在我的代碼中,我想檢查在未輸入輸入值時是否按下回車鍵。因爲,除非輸入沒有輸入,否則通常按回車鍵纔會換行;而在這種情況下,我想通過檢測回車鍵來執行命令。通過「回車」鍵檢查C++中的空輸入檢測
#include <iostream>
#include <string>
using namespace std;
int main(){
String str="";
while(str!="exit"){
cin>>str;
if(input is not entered and enter key is pressed)
continue;
else
break;
}
return 0;
}
我願意接受任何建議。