摘要: 1 #include<iostream> 2 using namespace std; 3 4 int main() 5 { 6 string s; 7 while(1) 8 { 9 cin>>s; 10 cout<<s<<endl; 11 } 12 } 上代码会进入无限循环,ctrl z也不会停止 阅读全文
posted @ 2020-05-18 15:38 Gx_y 阅读(1417) 评论(0) 推荐(0) 编辑