fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. double x;
  6. int T = 10;
  7. int c;
  8. double deltaT[7];
  9. for (int c = 0; c < 7; c++)
  10. {
  11. x = rand() % 1 + (0.01 * (rand() % 101));
  12. deltaT[c] = T - x;
  13. }
  14.  
  15. for (int c = 0; c < 6; c++)
  16. {
  17. if (deltaT[c] > deltaT[c+1]) {
  18. x = deltaT[c];
  19. deltaT[c] = deltaT[c + 1];
  20. deltaT[c + 1] = x;
  21. }
  22. }
  23.  
  24. for (int c = 0; c < 7; c++) {
  25. cout << deltaT[c] << endl;
  26. }
  27.  
  28. system("pause");
  29. return 0;
  30. }
Success #stdin #stdout #stderr 0s 3468KB
stdin
Standard input is empty
stdout
9.68
9.44
9.7
9.06
9.61
9.81
9.88
stderr
sh: 1: pause: not found