Quiz) 방정식의 해 구하기

losuif·2021년 7월 30일
0

학원 복습 - JAVA

목록 보기
26/32
post-thumbnail

  • 풀이
public class Main {

	public static void main(String[] args) {
		
		for (int x = 1; x <= 10; x++) {
			
			for (int y = 1; y <= 10; y++) {
				
				int res = 4 * x + 5 * y;
				if (res == 60) {
					System.out.println("(" + x + "," + y + ")");
				
				}
			}
	}

}

  • 결과

0개의 댓글