September 6, 2002
Bry er inte om detta, behöver bara någon stans att spara
#include "stdafx.h"
#include
#include
#using
using namespace std;int main()
{
teckenbyt();
int temp;cout << "Hur många tal vill du sortera? ";
int antal;
cin >> antal;
int tal[100];
for(int x=0; xcin >> tal[x]; for(int v=0; v
for(int h=v+1; h if(tal[v]>tal[h])
{
temp=tal[h];
tal[h]=tal[v];
tal[v]=temp;
}
cout << "Talen i ordning är ";
for(int y=0; ycout << tal[y] << " ";
}
June 19, 2002
muchcup wrote: Bry er inte om detta, behöver bara någon stans att spara
#include "stdafx.h"
#include
#include
#using
using namespace std;int main()
{
teckenbyt();
int temp;cout << "Hur många tal vill du sortera? ";
int antal;
cin >> antal;
int tal[100];
for(int x=0; xcin >> tal[x]; for(int v=0; v
for(int h=v+1; h if(tal[v]>tal[h])
{
temp=tal[h];
tal[h]=tal[v];
tal[v]=temp;
}
cout << "Talen i ordning är ";
for(int y=0; ycout << tal[y] << " ";
}
Tips till nästa gång, skicka ett pm till dig.
1 Guest(s)