新微赢技术网

标题: 新手问题,请大虾们指点指点!! [打印本页]

作者: 泡个帅滴上床    时间: 2009-11-5 00:31
标题: 新手问题,请大虾们指点指点!!
while后为什么是1
toupper是什么意思?
#include<iostream>
#include<iostream>
using namespace std;
int main()
{
char flag;
while(1)
{
cout<<"(Yes or No):";
cin>>flag;
if(toupper(flag)=='Y'
{cout.....
作者: 訫譩    时间: 2009-11-5 00:31
无限循环
作者: 幸福乐园    时间: 2009-11-5 00:32
以下是引用wangzonggui在2007-3-21 21:40:28的发言:


toupper是什么意思?


toupper

原型:extern int toupper(int c);

用法:#include <ctype.h>

功能:将字符c转换为大写英文字母

说明:如果c为小写英文字母,则返回对应的大写字母;否则返回原来的值。

举例:
#include <iostream>
#include <ctype.h>
using namespace std;
main()
{
char *s="Hello, World!";
int i;
cout<<s;
for(i=0;i<strlen(s);i++)
{
putchar(toupper(s[i]));
}

getchar();
return 0;
}




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2