java中如何输入char型数据

2024-11-16 03:51:31
推荐回答(3个)
回答(1):

    java如果从控制端输入char类型数据,可以使用scanner来扫描用户输入的字符,实例如下:

Scanner in = new Scanner(System.in);
int temp = in.nextInt();
char c = (char)temp;
System.out.println("the c is : " + c );

   如果是输出为char类型,可以通过转义字符来替代,形如:/n、/d等。

回答(2):

你想问的是?

Scanner in = new Scanner(System.in);
int temp = in.nextInt();
char c = (char)temp;
System.out.println("the c is : " + c );

只要你输入的数值大于32,如42,就可以输出一个字符。

回答(3):

直接输入不行,要进行转换
import java.util.*;
class Test
{
public static void main(String []args)
{
Scanner s=new Scanner(System.in);
String str=s.nextLine();
char ch=str.charAt(0);
System.out.println(ch);
}
}

这个程序的缺点是读入str字符串后再转换,ch只读取了str的第一个字符。