본문 바로가기
CS/Algorithm

[알고리즘] for문 이용하기2

by 별토끼. 2017. 10. 21.
반응형


별찍기 2


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.Scanner;
 
public class java2439 {
 
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        
        int num = scan.nextInt();
        
        for(int i=0;i<num;i++) {
            for(int k=0;k<num-i-1;k++) {
                System.out.print(" ");
            }            
            for(int j=0;j<i+1;j++) {
                System.out.print("*");
            }
            System.out.print("\n");
        }
    }
}
 
cs


별찍기 3


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.util.Scanner;
 
public class java2440 {
 
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int num = scan.nextInt();
        
        for(int i=num;i>0;i--) {
            for(int j=i;j>0;j--) {
                System.out.print("*");
            }
            System.out.print("\n");
        }
 
    }
 
}
 
cs


반응형

'CS > Algorithm' 카테고리의 다른 글

[알고리즘] 9012 괄호  (0) 2018.03.08
[BFS] 백준 2606 바이러스  (0) 2018.01.14
[알고리즘] for문 사용해보기  (0) 2017.10.20
[BOJ][JAVA][2839] 설탕옮기기  (0) 2017.10.20
[알고리즘] 나머지, A+B-2  (0) 2017.10.20

댓글