(4)별찍기

C/간단한 프로그램 2018. 6. 18. 15:12

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <iostream>
 
using namespace std;
 
void main()
{
    int i = 0int j = 0;
 
    for (i = 1; i <= 5++i)
    {
        for (j= 1; j <= i; ++j)
        {
            cout << "*";
            
        }
        cout << endl;
        
    }
    cout << endl;
 
    for (i = 5; i >= 0--i)
    {
        for (j = 1; j <= i; ++j)
        {
            cout << "*";
        }
        cout << endl;
    }
 
    
    system("pause");
}
 
cs



 

 

 

  


 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

'C > 간단한 프로그램' 카테고리의 다른 글

(6) 재귀함수 팩토리얼  (0) 2018.06.18
(5) 구구단  (0) 2018.06.18
(3) 홀짝게임  (0) 2018.06.18
(2)자판기  (0) 2018.06.18
(1)성적표 입출력 문제  (0) 2018.06.18

설정

트랙백

댓글