throws IOException 是抛出异常,new Bufferedreader时会产生IOException异常,用throws IOException可将这个异常抛给类QqApp的父类,它本身不会处理这个异常。更常用的方法是用try-catch自己处理异常。
从键盘输入整数是I/O流的内容,有很多种实现方法,除了标准输入流System.in外,常用的还有Scanner等
import java.util.*;//Scanner位于util包
public class HelloFriend
{
String name;
int age;
HelloFriend()
{
Scanner in = new Scanner(System.in);
//输入字符
System.out.println("What's your name?");
name = in.nextLine();
//输入整形数据
System.out.println("How old are U?");
age = in.nextInt();
}
void display()
{
System.out.println("Hello, "+name+". Next year U'll be "+(age+1));
}
}
public class InputTest
{
public static void main(String[] args)
{
HelloFriend aFriend = new HelloFriend();
aFriend.display();
}
}
看了这个你就明白了
说清楚点~
class text
{
public static void mian(String args)
{
int i=1;
System.out.print(i);
}
}
这样都可以输出一个整数 !
有这两句就得了
就是叫你打印出一个整数INT
int i=1234;
System.out.println(i);
class a {
public static void main (String args[]){
int b=123456;
System.out.println (b);
}
}//这样就是输出一个整数
xxxx是一个数字变量
System.out.println((int)xxxx)