多组数据输入,输出问题,急!!!

时间:2022-10-06 04:17:31
输入包含多组测试数据。每行包含一组整数a,b。当输入为0 0 时,测试结束,此时的结果不输出

2 个解决方案

#1



package com.briup.test08;

import java.util.Scanner;

public class Test{
public static void main(String[] args) {
while(true){
Scanner input=new Scanner(System.in);
String str=input.next();
//如果输入为0 0,则系统结束
if(str.equals("00")){
System.out.println("系统结束");
System.exit(0);
}
//至于你那个测试我没看懂什么意思,没法帮忙了
else{
System.out.println(str);
}
}
}
}

#2


12 23
12 23
0 0
35
为什么只输出一个35啊!

#1



package com.briup.test08;

import java.util.Scanner;

public class Test{
public static void main(String[] args) {
while(true){
Scanner input=new Scanner(System.in);
String str=input.next();
//如果输入为0 0,则系统结束
if(str.equals("00")){
System.out.println("系统结束");
System.exit(0);
}
//至于你那个测试我没看懂什么意思,没法帮忙了
else{
System.out.println(str);
}
}
}
}

#2


12 23
12 23
0 0
35
为什么只输出一个35啊!