我目前正在尝试解决 onlinge 法官的以下问题:http ://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=310 。
我想知道如何确定程序何时应该退出,换句话说,我应该何时停止输入循环并退出程序?
示例代码:
public static void main(String[] args)
{
//Something here
Scanner in = new Scanner(System.in);
while(?) //How do I determine when to end?
{
//Doing my calculation
}
}
我唯一的想法是在所有输入都粘贴到控制台后停止输入阅读器,但我不知道我将如何做到这一点。