System.out.println怎么打格式才是正确的
答案:2 悬赏:10 手机版
解决时间 2021-03-07 05:23
- 提问者网友:温柔港
- 2021-03-06 20:51
老是提示错误
最佳答案
- 五星知识达人网友:有你哪都是故乡
- 2021-03-06 22:02
额,大小写注意下,然后单词注意下就了
全部回答
- 1楼网友:山君与见山
- 2021-03-06 23:33
一次输出多个数字,给你个例子:
public class systest{
public static void main(string args[]){
int age = 24;
string name = "java";
int other = 100;
//方式1
system.out.println("age=" + age + " name=" + name + " other=" + other);
//方式2
system.out.println(string.format("age=%d name=%s other=%d",age,name,other));
}
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯