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