C++题目:while(1)是什么意思?
#include<iostream>#include<cstdlib>usingnamespacestd;intmain(){charflag;while(1){cout...
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char flag;
while (1)
{
cout << "现在正在下雨吗?(Y or N):";
cin >> flag;
if (toupper(flag) == 'Y')
{
cout << "现在正在下雨。";
break;
}
if (toupper(flag) == 'N')
{
cout << "现在没有下雨。";
break;
}
cout << endl;
}
} 展开
#include <cstdlib>
using namespace std;
int main()
{
char flag;
while (1)
{
cout << "现在正在下雨吗?(Y or N):";
cin >> flag;
if (toupper(flag) == 'Y')
{
cout << "现在正在下雨。";
break;
}
if (toupper(flag) == 'N')
{
cout << "现在没有下雨。";
break;
}
cout << endl;
}
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询