|
为了让C语言程序设计人员更好地应用java,同时让输入/输出的方式更加灵活,Java 5提供了格式化的输入/输出功能。通过它,可以很好地控制输入/输出格式。
格式化输入/输出示例如下:
//FormatInput.java
import java.util.*;
public class FormatInput{
public static void main(String args[]){
Scanner inputscan=new Scanner(System.in);
String str=inputscan.next();
int intValue=inputscan.nextInt();
inputscan.close();
System.out.printf("The String input is %s\n",str);
System.out.printf("The int input is %d\n",intValue);
}
}
运行结果(假设程序运行时输入:FormatInput和100):
The String input is FormatInput
The int input is 100 |
|