import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); String str=sc.next(); int length=1189; int width=841; String[]s=new String [10]; for (int i = 0; i < 10; i++) { s[i]=length+"/"+width; length/=2; if(length<width){ int t=length; length=width; width=t; } } String[]nm=s[str.charAt(1)-'0'].split("/"); System.out.println(nm[0]+"\n"+nm[1]); } }
解题思路:
注意事项:
参考代码:
0.0分
6 人评分
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:609 |
【亲和数】 (C语言代码)浏览:908 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:387 |
WU-图形输出 (C++代码)浏览:836 |
C语言程序设计教程(第三版)课后习题6.3 (C++代码)浏览:1068 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
1024题解浏览:879 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:476 |
C语言训练-8除不尽的数 (C语言代码)浏览:1469 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:620 |