设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 387|回复: 2
打印 上一主题 下一主题

新手问题,请大虾们指点指点!!

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-5 00:31:43 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
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.....
2#
发表于 2009-11-5 00:31:44 | 只看该作者
无限循环
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-5 00:32:02 | 只看该作者
以下是引用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;
}
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 02:16 , Processed in 0.103540 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表