문제
풀이
import java.io.*;
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for(int i = 1; i<=n; i++){
if(i%3 == 0) {
System.out.print("X"+" ");
} else {
System.out.print(i+" ");
}
}
}
}
'코딩테스트' 카테고리의 다른 글
[구름LEVEL] 특정 문자 개수 구하기 (0) | 2021.03.12 |
---|---|
[구름LEVEL] Substring (0) | 2021.03.12 |
[구름LEVEL] 윤년(Leap Year) (0) | 2021.03.12 |
[구름LEVEL] 거스름돈 (2) | 2021.03.12 |