无脑打印。
import java.util.Scanner; public class Main { public static int compare(int a, int b) { if (a > b) { return a; } else { return b; } } public static int compare(char a, char b) { return Math.abs((int)a - (int)b); } public static String compare(String a, String b) { if (a.compareTo(b) >= 0) { return a; } else { return b; } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println(compare(sc.nextInt(), sc.nextInt())); System.out.println(compare(sc.next().charAt(0), sc.next().charAt(0))); // 这里注意,Scanner 对象没有 nextChar() 方法,next() 读进来的是字符串,可以通过 charAt(0) 取第一个字符。 System.out.println(compare(sc.next(), sc.next())); sc.close(); } }
0.0分
0 人评分
不知道哪里错了浏览:1226 |
川哥的吩咐 (C++代码)浏览:1076 |
P1002 (C语言代码)浏览:1019 |
母牛的故事 (C语言代码)浏览:478 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:949 |
WU-printf基础练习2 (C++代码)浏览:2061 |
C语言训练-亲密数 (C语言代码)浏览:697 |
1012题解浏览:938 |
青年歌手大奖赛_评委会打分 (C语言代码)浏览:2248 |
C语言程序设计教程(第三版)课后习题9.1 (C语言代码)浏览:653 |