-
[SWEA-12004] 구구단1 - Java공부/SWEA 2022. 6. 20. 12:14728x90
https://swexpertacademy.com/main/code/problem/problemDetail.do
SWEA 12004번 구구단1 자바 풀이
난이도: D3
코드
import java.util.*;public class swea12004 {public static void main(String args[]){Scanner sc = new Scanner(System.in);int T;T=sc.nextInt();for(int test_case = 1; test_case <= T; test_case++){boolean check=false;int num=sc.nextInt();for(int i=1;i<10;i++){if(num%i==0){if(num/i<10){check=true;break;}}}if(check==true){System.out.println("#"+test_case+" Yes");}else{System.out.println("#"+test_case+" No");}}}}728x90반응형'공부 > SWEA' 카테고리의 다른 글
[SWEA-11736] 평범한 숫자 - Java (0) 2022.06.22 [SWEA-11856] 반반 - Java (0) 2022.06.21 [SWEA-12221] 구구단2 - Java (0) 2022.06.17 [SWEA-12368] 24시간 - Java (0) 2022.06.16 [SWEA-12741] 두 전구 - Java (0) 2022.06.15