这是课本原题,可是还是错了,实在不知道java中输入语句咋样运用啊啊public class If {public static void main(String[] args) {throws java.io.IOException{int i;char num='6';System.out.println("a number between 0 and 10.");System.o
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/19 10:46:01
这是课本原题,可是还是错了,实在不知道java中输入语句咋样运用啊啊public class If {public static void main(String[] args) {throws java.io.IOException{int i;char num='6';System.out.println("a number between 0 and 10.");System.o
这是课本原题,可是还是错了,实在不知道java中输入语句咋样运用啊啊
public class If {
public static void main(String[] args) {
throws java.io.IOException{
int i;
char num='6';
System.out.println("a number between 0 and 10.");
System.out.println("what is it ");
i=System.in.read();
if(i==num)
System.out.println("you are talent ");
}
}
}
这是课本原题,可是还是错了,实在不知道java中输入语句咋样运用啊啊public class If {public static void main(String[] args) {throws java.io.IOException{int i;char num='6';System.out.println("a number between 0 and 10.");System.o
java的输入语句有4个,据我所知的啊,
1.在主方法里面使用的,(在控制台输入一个字符串还有数字,然后输出来)
public class Class5 {
public static void main(String[] args) {
String first=args[0];
int second=Integer.parseInt(args[1]);
System.out.print(first+":second");
}
}
2.这个只能在主方法里面(使用System.in.read()方法读取用户从键盘输入的字节数据,回车后,把从键盘输入的数据存放到数组buffer中,并将用户输入的数据通过System.out.print()显示在屏幕上.)
import java.io.*;
public class Class1
{
public static void main(String args[]) {
byte buffer[]=new byte[128];
int n;
try
{
n=System.in.read(buffer); //把键盘输入的数据读到数组buffer中,返回实际读取的字节数
for(int i=0;i