Java,这个题要怎么做,怎么选数据类型?
发布网友
发布时间:2022-05-06 16:19
我来回答
共3个回答
热心网友
时间:2022-07-01 09:37
String brand = "小米3";
String os = "Android4.3";
int cpu = 2;
double price = 1000.0;
System.out.print("手机品牌:" + brand + "\n" + "操作系统:" + os + "\n" + "CPU数:" + cpu + "\n" + "价格:" + price + "元");
热心网友
时间:2022-07-01 09:37
名称 一般都用String name= "小米";
系统名称一般也是用 String name1 = "android";
数量 一般都是整数 所以用 int num = 2;
价格一般会包含小数 可以用double 、float
double db = 1999.0、float db = 1999.0
System.out.println(name)
System.out.println(name1)
System.out.println(num)
System.out.println(db+"元")追问
是这样的吧.....,谢谢!
追答是的,,用的很好,我没写完整!!
热心网友
时间:2022-07-01 09:38
String String char double