public class Testzhidao { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String arg = reader.readLine(); String[] num = arg.split(" "); int a = Integer.valueOf(num[0]); int b = Integer.valueOf(num[1]); int c = Integer.valueOf(num[2]); System.out.println("a="+ a); System.out.println("b="+ b); System.out.println("c="+ c); } }本回答被提问者采纳