Star Draw(별 그리기4)
문제
https://www.acmicpc.net/problem/2411
결과
*****
****
***
**
*
문제풀이
row는 몇번째 행인지 나타내면서 열에서 *을 그릴 index가 되기도 한다.
j >= pos 열을 그릴 때 row index(i) 보다 현재 열 인덱스(j) 가 같거나 크면 *을 그린다
소스
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// *****
// ****
// ***
// **
// *
// 오른쪽역방향
Scanner sc = new Scanner(System.in);
int count = sc.nextInt();
for(int i = 0; i < count; ++i)
{
for(int j = 0; j <count; ++j)
{
if(j >= i)
{
System.out.print("*");
}
else
{
System.out.print(" ");
}
}
System.out.print("\n");
}
}
}