在做在線編程題目的時候疗琉,需要了解一下數(shù)據(jù)的輸入格式。這樣可以對數(shù)據(jù)處理有比較好的把握歉铝,不需要把太多的時間放在這個上面盈简,注重主要的算法邏輯即可。這里總結(jié)一下太示,為之后筆試做個準(zhǔn)備柠贤。
1.從終端輸入的方式
Scanner類的使用方法:
Scanner scanner = new Scanner(System.in);
從終端獲取輸入流,輸入流傳入Scanner初始化對象時类缤,作為參數(shù)傳遞進(jìn)去偷办。
Scanner類的重要幾個方法:
next方法(讀取一個字符)
- 1绰姻、一定要讀取到有效字符后才可以結(jié)束輸入(要是什么都不輸入,則程序不結(jié)束)
- 2、對輸入的有效字符之前遇到的空白拯欧,next方法會自動將其去掉箱季。只有輸入有效字符后才將其后面的輸入的空白作為分隔符或者結(jié)束符玄柏。
- next方法補鞥呢得到帶有空格的字符串兼呵。
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNext()){
String next = sc.next();
System.out.println(next);
}
}
nextLine方法(讀取一行字符串)
- 1、以Enter為結(jié)束符驮瞧,也就是說nextLine()方法返回的是輸入回車之前的所有字符氓扛。
- 2、可以獲得空格论笔。
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNextLine()){
String next = sc.nextLine();
System.out.println(next);
}
}
nextInt
讀取一個整數(shù)采郎。有時候可以直接在終端獲取一個整數(shù),不需要在將String轉(zhuǎn)換為int狂魔。這樣可以減少程序的運行時間尉剩。
2.String與Char
String轉(zhuǎn)Char[]:利用toCharArray()
Scanner sc = new Scanner(System.in);
String line = sc.nextLine();
char[] chars = line.toCharArray();
String轉(zhuǎn)單個插入字符:利用charAt()
Scanner sc = new Scanner(System.in);
String line = sc.nextLine();
char charAt = line.charAt(2);
3.String與int
int轉(zhuǎn)化為String:利用valueOf()
int n = 10;
String s = String.valueOf(10);
System.out.println(s);
String轉(zhuǎn)int:利用Integer.parseInt(s);
Scanner sc = new Scanner(System.in);
String line = sc.nextLine();
int i = Integer.parseInt(line);
System.out.println(i);
4.輸入的格式
例如:
5,15 2,10
import java.util.Scanner;
/**
* @author zhoujian123@hotmail.com 2018/8/24 19:27
*/
public class ScannerTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String line = sc.nextLine();
String[] split = line.split(" ");
for (int i = 0; i < split.length; i++) {
String s = split[i];
int i1 = Integer.parseInt(s.split(",")[0]);
int i2 = Integer.parseInt(s.split(",")[1]);
System.out.println(i1+" "+i2);
}
}
}
開始做在線筆試題了!