@Slowpok
4 / 4 / 0
Регистрация: 03.01.2012
Сообщений: 112
|
03.11.2013, 21:47
|
|
C++ | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| #include <iostream>
using namespace std;
int main ()
{
int n;
cin>>n;
for (int i=0; i<n; i++) {
for (int j=0; j<=i; j++)
cout << "*";
cout << endl;
}
system("PAUSE");
return 0;
} |
|
0
|