IO——使用鍵盤輸入多個學生的資訊
阿新 • • 發佈:2022-05-21
使用鍵盤輸入多個學生的資訊,並將這些學生的資訊儲存到模組的1.txt檔案中;
要求:
1:學生資訊包含姓名、年齡(用一行字串表示即可,無需建立學生物件);
2:每個學生資訊佔一行,學生資訊之間使用逗號分隔;
3:至少輸入3個學生資訊;
效果
參考程式碼:
public class Demo5 {
public static void main(String[] args) throws IOException {
Scanner scanner = new Scanner(System.in);
FileOutputStream fos = new FileOutputStream("test02\\1.txt");
for (int i = 1; true; i++) {
System.out.println("請輸入第" + i + "個學生的姓名和年齡,學生資訊之間使用逗號分隔(ok表示結束):");
String s = scanner.next();
if (s.equalsIgnoreCase("ok")) {
System.out.println("byebye");
break;
}
fos.write((s+"\r\n").getBytes());
}
fos.close();
}
}