package edu.xcdq;
import java.util.Scanner;
public class AddUser {
public static void main(String[] args) {
System.out.println("迷你游戲平臺(tái) > 添加用戶信息");
? ? ? ? System.out.println("請(qǐng)輸入要錄入的用戶的數(shù)量:");
? ? ? ? Scanner scanner =new Scanner(System.in);
? ? ? ? int num = scanner.nextInt();
? ? ? ? for (int i =0 ; i < num; i++){
System.out.println("請(qǐng)輸入用戶編號(hào)(<4位整數(shù)>):");
? ? ? ? ? ? int userID = scanner.nextInt();
? ? ? ? ? ? System.out.println("請(qǐng)輸入用戶年齡:");
? ? ? ? ? ? int age = scanner.nextInt();
? ? ? ? ? ? if ( age <10){
System.out.println("你的年齡不適合玩游戲");
? ? ? ? ? ? ? ? System.out.println("錄入信息失敗");
continue;
? ? ? ? ? ? }
System.out.println("請(qǐng)輸入用戶積分:");
? ? ? ? ? ? int JiFen = scanner.nextInt();
? ? ? ? ? ? System.out.println("用戶編號(hào):"+userID+"\t年齡:"+age+"\t積分"+JiFen);
? ? ? ? }
}
}