最赞回答 / zhw110
public class Class { public static void main(String[] args) { Scanner input = new Scanner(System.in); int a = input.nextInt(); int b = input.nextInt(); int c = input.nextInt(); int h = a > b ? a : b; // h为a和b中较大的数 int s = h > c ? h : c; // s为h...
2015-06-13
最新回答 / zero_wangdu
// 偶数 i % 2 == 0 // 奇数 i % 2 == 1 if ( i % 2 == 0 ) { // 求偶数和 sum = sum + i; }
2015-06-12
最新回答 / 宫先生
Import - General - Existing Projects into Workspace - 取消勾选 Copy projects into workspace点击Browse.. 选择workspace 中 的项目 Finish记得先取消勾选 再选项目
2015-06-12