#include #include #include #include using namespace std; int main() { ofstream plik("losowe1.txt"); srand( time( NULL ) ); int los[500]={}; for(int i = 0; i < 100; i++){ los[i]=(rand() % 450) + 50; plik << los[i] << endl; } int L[500]={}; ifstream in("losowe1.txt"); for(int i = 0; i< 100; i++) { in >> L[i]; } for(int i = 0; i < 99; i++) { for(int j=0; j < 99; j++) if(L[j]>L[j+1]) swap(L[j],L[j+1]); } ofstream of("posorowane1.txt"); for(int i = 0; i < 100; i++){ cout << L[i] << endl; of << L[i] << endl; } return 0; }