在java中定义多个同类型的变量并赋值比较,最后如何在控制台输出已赋值的变量值所对应的变量名。比如int math=120,怎样在控制台输出math
6 回答
甫艾蒽廷
TA贡献38条经验 获得超21个赞
public class test { public static void main(String[] args) { // TODO Auto-generated method stub int math = 120; System.out.println("math " + math); } }
望采纳
XhstormR
TA贡献140条经验 获得超197个赞
public class Test { public static void main(String[] args) { int math = 120; System.out.println(math); } }
更新:
import java.util.Arrays; public class Test { public static void main(String[] args) { int math = 120; int chinese = 100; int english = 90; int[] score = {math, chinese, english}; Arrays.sort(score); int max = score[score.length - 1]; System.out.println(max); } }
代码以上,望采纳。
KXFT
TA贡献113条经验 获得超58个赞
public static void main(String[] args) {
int math=12;
System.out.println(“math”);
}
丶包菜
TA贡献158条经验 获得超233个赞
public static void main(String[] args) { int math=12; System.out.println(math); }
添加回答
举报
0/150
提交
取消