编写程序,用System.in.read()方法从键盘接收用户输入的6 个整
展开全部
system.in.read()方法的作用是从键盘读出一个字符,然后返回它的Unicode码。
比如以下程序
----TestIn.java -------
* @(#)TestIn.java 2007-11-22
*/
package cn.com.robert.baidu;
import java.io.IOException;
/**
* @author R
*/
public class TestIn {
/**
* @param args
*/
public static void main(String[] args) {
try {
int i=System.in.read();
System.out.println(i);
} catch (IOException e) {
e.printStackTrace();
}
}
}
-----end of TestIn.java ------
这里输入1,这返回结果是49
输入A,返回结果是65
至于第二问,不清楚为什么要用read()方法来做啊,用InputStreamReader不是蛮好的么
比如以下程序
----TestIn.java -------
* @(#)TestIn.java 2007-11-22
*/
package cn.com.robert.baidu;
import java.io.IOException;
/**
* @author R
*/
public class TestIn {
/**
* @param args
*/
public static void main(String[] args) {
try {
int i=System.in.read();
System.out.println(i);
} catch (IOException e) {
e.printStackTrace();
}
}
}
-----end of TestIn.java ------
这里输入1,这返回结果是49
输入A,返回结果是65
至于第二问,不清楚为什么要用read()方法来做啊,用InputStreamReader不是蛮好的么
展开全部
代码如下:
for(int j = 0; j < 5; j++) {
System.out.println("INPUT:");
char c = 0;
try {
c = (char) System.in.read();
} catch(IOException e){
}
if( c == '1') {
System.out.println("OK!");
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码如下:
for(int j = 0; j < 5; j++) {
System.out.println("INPUT:");
char c = 0;
try {
c = (char) System.in.read();
} catch(IOException e){
}
if( c == '1') {
System.out.println("OK!");
}
}
for(int j = 0; j < 5; j++) {
System.out.println("INPUT:");
char c = 0;
try {
c = (char) System.in.read();
} catch(IOException e){
}
if( c == '1') {
System.out.println("OK!");
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.io.*;
class MyJava2
{
public static void main(String args[])
{
char c=' ';
try{
c=(char)System.in.read();
}catch(IOException e){};
System.out.println(c);
}
}
输入一个字符的例子
class MyJava2
{
public static void main(String args[])
{
char c=' ';
try{
c=(char)System.in.read();
}catch(IOException e){};
System.out.println(c);
}
}
输入一个字符的例子
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询