| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 360 人关注过本帖
标题:新手问题,请大虾们指点指点!!
只看楼主 加入收藏
wangzonggui
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2007-3-21
收藏
 问题点数:0 回复次数:2 
新手问题,请大虾们指点指点!!

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.....

2007-03-21 21:40
song4
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:38
帖 子:1533
专家分:4
注 册:2006-3-25
收藏
得分:0 
无限循环

嵌入式 ARM 单片机 驱动 RT操作系统 J2ME LINUX  Symbian C C++ 数据结构 JAVA Oracle 设计模式 软件工程 JSP
2007-03-21 21:52
yuyunliuhen
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1435
专家分:0
注 册:2005-12-12
收藏
得分:0 
以下是引用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;
}


Go confidently in the  directions of your dreams,live the life you have imagined!Just do it!
It is no use learning without thinking!
2007-03-21 22:19
快速回复:新手问题,请大虾们指点指点!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.026773 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved