java輸入字元
『壹』 java中如何輸入一個字元
需要添加拋出聲明,但是可以從鍵盤輸入一個字元,如果輸入多個的話,那麼只會保存第一個字元。使用Scanner 類從鍵盤錄入一個字元,使用String 接收; 然後使用 String 的charAt功能。
『貳』 java中如何輸入一個字元
import java.util.*;
public class Test_01
{
public static void main(String[] args)throws Exception
{
System.out.println("請輸入一個字元");
char c=(char)System.in.read();
System.out.println(c);
}
}
(2)java輸入字元擴展閱讀:
還可以輸入字元串,輸入字元串的方法
import java.io.*;
public class Test
{
public static void main(String[] args) throws IOException
{
BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));
BufferedWriter buff = new BufferedWriter(new FileWriter("abc.txt"));
String str = buf.readLine();
while(!str.equals("exit"))
{
buff.write(str);
buff.newLine();
str = buf.readLine();
}
buf.close();
buff.close();
}
}
『叄』 java 輸入字元 輸出字元串
input.nextInt()是讀整形數據,用nextLine()讀取字元串的,
『肆』 在java中如何用鍵盤輸入一個數,字元,字元串
輸入一個數
Scanner in=new Scanner(System.in); //使用Scanner類定義對象
System.out.println("請輸入float型數據");
float a=in.nextFloat(); //接收float型數據
System.out.println(a);
System.out.println("請輸入float型整形數據");
int b=in.nextInt(); //接收整形數據
System.out.println(b);字元串
BufferedReader buffer = new BufferedReader(new InputStreamReader(System.in));
System.out.println("請輸入一串字元串");
String text = buffer.readLine();
System.out.println("您輸入的字元串是:" + text);字元
System.out.println("請輸入一字元");
char c=(char)System.in.read();
System.out.println(c);
『伍』 java中的字元輸入語句
樓上幾位說的沒錯,Scanner就很好用了。
Scanner scan=new Scanner(System.in);
int n=scan.nextInt();
long c=scan.nextLong();
不過沒有nextChar(),但可以輸入字元串,就是:
String s=scan.next();或者s=scan.nextLine();
兩者的區別是前面是讀到空格就返回,後面那個是讀入一行
『陸』 java中字元輸入
定義連個數組
一個放數字
一個放字母
判斷輸入字元在那個裡面
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Four {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
char[] input = str.toCharArray();
for (int i = input.length - 1; i >= 0; i--) {
System.out.print(input[i]);
}
}
}
『柒』 在java中如何輸入一個char型字元。
方法一:
Scanner cin=new Scanner(System.in);
String s=cin.nextLine();
char ans=s.charAt(0);
這樣即可獲取一個字元。
方法二:
byte[] b=new byte[2];
try{
System.in.read(b)
}catch(Exception e){}
char ans=new String(b).charAt(0);
這樣即可獲取一個字元
『捌』 java中怎麼中鍵盤輸入字元串
首先,導入java.util.*包。
import java.util.*;
然後,你需要新建一個讀取標准輸入(鍵盤)的掃描器對象。
Scanner in = new Scanner(System.in);
現在,你可以從鍵盤輸入字元串了。
String s = in.nextLine();
以上這一行把鍵盤輸入的一行字元串讀取到變數 s 中。
請看一個完整的簡單示例:
import java.util.*;
public class Main
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
String s = in.nextLine();
System.out.println(s);
}
}
『玖』 JAVA中怎樣輸入字元串
1.首先,導入java.util.*包。
(9)java輸入字元擴展閱讀:
Java是一門面向對象編程語言,不僅吸收了C++語言的各種優點,還摒棄了C++里難以理解的多繼承、指針等概念,因此Java語言具有功能強大和簡單易用兩個特徵。Java語言作為靜態面向對象編程語言的代表,極好地實現了面向對象理論,允許程序員以優雅的思維方式進行復雜的編程 。
Java具有簡單性、面向對象、分布式、健壯性、安全性、平台獨立與可移植性、多線程、動態性等特點。
Java可以編寫桌面應用程序、Web應用程序、分布式系統和嵌入式系統應用程序等。