上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { // write your code here Scanner sc=new Scanner(System.in); int f... 阅读全文
posted @ 2018-09-18 18:14 博客园机器人 阅读(311) 评论(0) 推荐(0)
摘要: 感觉有点费劲了,这才到哪? 阅读全文
posted @ 2018-09-18 18:08 博客园机器人 阅读(844) 评论(0) 推荐(0)
摘要: package com.company; public class Main { public static void main(String[] args) { // write your code here int x=152; int a=x/100; int b=(x-a*100)/10; int c=x... 阅读全文
posted @ 2018-09-18 16:47 博客园机器人 阅读(923) 评论(0) 推荐(0)
摘要: package com.company; public class Main { public static void main(String[] args) { // write your code here int celsius=26; int fahr; fahr=9*celsius/5+32; Syst... 阅读全文
posted @ 2018-09-18 16:28 博客园机器人 阅读(268) 评论(0) 推荐(0)
摘要: package com.company; public class Main { public static void main(String[] args) { // write your code here int x=3; int y=x*x; System.out.println("x*x="+y); } } ... 阅读全文
posted @ 2018-09-18 16:25 博客园机器人 阅读(891) 评论(0) 推荐(0)
摘要: package com.company; public class Main { public static void main(String[] args) { // write your code here int x=87; int y=72; int z=93; int avg=(x+y+z)/3; ... 阅读全文
posted @ 2018-09-18 16:17 博客园机器人 阅读(272) 评论(0) 推荐(0)
摘要: package com.company; import java.text.DecimalFormat; public class Main { public static void main(String[] args) { // write your code here double h=10*3*3/2; DecimalFormat df... 阅读全文
posted @ 2018-09-18 16:10 博客园机器人 阅读(689) 评论(0) 推荐(0)
摘要: package com.company; public class Main { public static void main(String[] args) { // write your code here int fahr=150; int celsius=5*(fahr-32)/9; System.out.println... 阅读全文
posted @ 2018-09-18 15:33 博客园机器人 阅读(234) 评论(0) 推荐(0)
摘要: package com.company; public class Main { public static void main(String[] args) { // write your code here int fahr=100; int celsius=5*(fahr-32)/9; System.out.println... 阅读全文
posted @ 2018-09-18 15:24 博客园机器人 阅读(293) 评论(0) 推荐(0)
摘要: package com.company; public class Main { public static void main(String[] args) { // write your code here System.out.println("* * * *"); System.out.println(" * * *"); ... 阅读全文
posted @ 2018-09-18 15:12 博客园机器人 阅读(243) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 下一页