我刚刚开始研究java n,从用户那里获取输入并编写了代码
public class swap {
public static void main(String[]args ) {
DataInputStream joi=new DataInputStream (System.in);
System.out.println("enter two integer values");
int a=Integer.parseInt(joi.readLine());
int b=Integer.parseInt(joi.readLine());
}
}
并在编译时给出了错误:
第9行的这一行中的多个标记