开发平台(Platform): (Ex: Win10, Linux, ...)
macOS
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
G++ 8
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
none
问题(Question):
int main在return 0后,terminal不会关掉程式
喂入的资料(Input):
n/a
预期的正确结果(Expected Output):
跳出while 结束程式
错误结果(Wrong Output):
要手动按enter才会跳
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
int main(){
string cmd;
while(cin >> cmd){
if(cmd == "E") break;
else //do something;
}
return 0;
}
补充说明(Supplement):
设计是让程式读到"E"后就跳出while,然后直接return 0;
可是看来break之后它还在"cin >> cmd"
要怎么确实的跳出循环然后结束程式?