Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab6 (3.b) 

Snippet info

Language

Cpp

Visibility

public

Author

buteskul5.6

Created

2018-11-08T20:25:12Z

Updated

2018-11-08T20:25:12Z

#include <iostream>

using namespace std;

int main()
{
	int const N = 15;
	double array[N];

	for (int i = 0; i < N; i++)
	{
		array[i] = (rand() % 23)/22.0+22;
	}
	for (int i = 0; i < N; i++)
	{
		cout << endl << array[i];
	}
	return 0;

}

INFO