在Java中打印整数的语法是什么。

huangapple go评论98阅读模式
英文:

what is the syntax to print a integer in java

问题

在C语言中,一个整数可以按以下方式打印。

int a = 5;
printf("%d", a);

我的问题是如何在Java中编写上述代码。

英文:

In c language,a integer can be printed as follows.

    int a=5; 
    printf("%d",a);

My question is how does these above lines can be written in java.

答案1

得分: 2

int a=5;
System.out.println(a);
英文:
int a=5;
System.out.println(a);

答案2

得分: 0

int a = 5;
System.out.printf("%d", a);

查看数字打印输出格式:https://docs.oracle.com/javase/tutorial/java/data/numberformat.html

英文:
int a=5;
System.out.printf("%d", a);

See Formatting Numeric Print Output: https://docs.oracle.com/javase/tutorial/java/data/numberformat.html

huangapple
  • 本文由 发表于 2020年4月4日 13:21:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/61024118.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定