1.print
print在JAVA中常常使用System.out.pirnt();的输出格式。
在Java中进行一般的输出语句。例子如下:
输出
可见其不会换行。
2.printf
printf在JAVA中常常使用System.out.printf();的格式。
在Java中printf常用于格式转换,但需要注意不是换行输出,只用于精度转换。例子如下:
import java.util.Scanner; // 1:无需package // 2: 类名必须Main, 不可修改 public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); //在此输入您的代码... int a = scan.nextInt(); for(int i=0; i<a; i++){ double b = scan.nextInt(); System.out.printf("%.3f\n",Math.cbrt(b));//这其中将接收到的int类型b先使用Math.cbrt()方法求出立方根,再转变为三位小数的浮点型进行输出。所以只能用printf。 } scan.close(); } }3.println
println在JAVA中常常使用System.out.pirntf();的输出格式。
在Java中主要是用于换行输出,但不能用于格式转换。
输出:
标签:输出,Java,System,println,printf,print From: https://www.cnblogs.com/mydaima/p/17638795.html