关于while and toupper的问题while后为什么是1toupper是什么意思?#include#includeusing namespace std;int main(){char flag;while(1){coutflag;if(toupper(flag)=='Y'{cout.

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/07 08:54:48
关于while and toupper的问题while后为什么是1toupper是什么意思?#include#includeusing namespace std;int main(){char flag;while(1){coutflag;if(toupper(flag)=='Y'{cout.

关于while and toupper的问题while后为什么是1toupper是什么意思?#include#includeusing namespace std;int main(){char flag;while(1){coutflag;if(toupper(flag)=='Y'{cout.
关于while and toupper的问题
while后为什么是1
toupper是什么意思?
#include
#include
using namespace std;
int main()
{
char flag;
while(1)
{
coutflag;
if(toupper(flag)=='Y'
{cout.

关于while and toupper的问题while后为什么是1toupper是什么意思?#include#includeusing namespace std;int main(){char flag;while(1){coutflag;if(toupper(flag)=='Y'{cout.
你的问题发错了地方,你应该发在软件里,这里是外语区
C语言我也学过,但是不精通,我想用1可能是:while是一个循环语句,其后的(1)是循环的条件,具体1表示什么,那就要看你的程序了.toupper在这里是一个C函数,具体它是怎么用的,你要查专业书籍,我也忘了.