Getallen verplaatsen array

Status
Niet open voor verdere reacties.

ronaldo12

Gebruiker
Lid geworden
10 mrt 2014
Berichten
48
Heey,

Ik wil twee getallen met elkaar wisselen, in dit getal het eerste en de laatste.. weet iemand hoezo mijn code niet werkt?

Code:
// cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
	int grades[7]={4,6,3,5,2,7,1};
	int i,j,voorlopig;
	for(j=1; j<=6; j=j+1)
		for(i=0; i<=5; i=i+1)
		{
			voorlopig=grades[6];
			grades[6]=grades[0];
			grades[0]=voorlopig;
		}
		
		printf("De omwisseling van 4 en 1: %d\n");
		for(i=0; i<=6; i=i+1) 
			printf("\t%d\n", grades[i]);


	return 0;
}
 
[cpp]#include <iostream>
#include <vector>
using namespace std;
int main(int argc, char *argv[])
{
int grades[7] = {4,6,3,5,2,7,1};
const int SIZE = 7;

cout << "De omwisseling van " << grades[0] << " en " << grades[6] << endl;

//wissel eerste en laatste getal om:
int i = grades[0];
grades[0] = grades[6]; grades[6] = i;

for (int i = 0; i < SIZE; i++)
cout << grades << endl;

cin.get();
return 0;
}
[/cpp]

This should work.
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan