这个C++代码片段的Java等价物是什么:
string str ;
while(cin>>str){
//code
}
像这样的东西
String str ;
while((str = System.in.readLine()) != null){
//code
}
Scanner scanner = new Scanner(System.in);
String sentence = scanner.nextLine();
Scanner scanner = new Scanner(System.in);
boolean flag = true;
while(flag)
{
String str = scanner.nextLine();
// Add any condition to set flag = false to exit from while loop
}
您可以使用 GUI 样式来做到这一点。
import javax.swing.JOptionPane;
String Input=JOptionPane.showInputDialog("Title","Message");