#include <iostream>
using namespace std;
int main()
{
	double x;
	int T = 10;
	int c;
	double deltaT[7];
	for (int c = 0; c < 7; c++)
	{
		x = rand() % 1 + (0.01 * (rand() % 101));
		deltaT[c] = T - x;
	}

		for (int c = 0; c < 6; c++)
		{
			if (deltaT[c] > deltaT[c+1]) {
				x = deltaT[c];
				deltaT[c] = deltaT[c + 1];
				deltaT[c + 1] = x;
			}
		}
	
		for (int c = 0; c < 7; c++) {
		cout << deltaT[c] << endl;
	}

	system("pause");
	return 0;
}