@TheMachinist
244 / 176 / 15
Регистрация: 14.06.2010
Сообщений: 422
|
17.10.2010, 21:32
|
|
C++ | 1
2
3
4
5
6
7
8
9
10
11
12
13
| #include<iostream>
using namespace std;
int main()
{
for(int i = 0;i < 50;i++){
float a = (rand()%10)*0.1;
cout << a << " ";
}
system("pause");
return 0;
} |
|
1
|