Notice
Recent Posts
Recent Comments
Link
삐까냥의 파도타기
1100번) 하얀 칸 본문
문제 출처 : https://www.acmicpc.net/problem/1100
import java.util.Scanner; public class Q1100 { public static void main(String[] args) { Scanner sc = new Scanner(System.in);
int white = 0; for ( int i = 0; i< 8; i++ ) { String temp = sc.nextLine(); int j = 0; if ( i % 2 != 0 ) { j = 1; }
for ( ; j < 8; j += 2) { if ( temp.charAt(j) == 'F' ) { white += 1; } } } System.out.println(white); } } |
'코딩 > 백준 알고리즘' 카테고리의 다른 글
1032번) 명령 프롬프트 (0) | 2017.11.11 |
---|---|
10808번) 알파벳 개수 (0) | 2017.11.11 |
2908번) 상수 (0) | 2017.11.11 |
1157번) 단어 공부 (0) | 2017.11.11 |
10809번) 알파벳 찾기 (0) | 2017.11.11 |