从键盘输入一个字符串,将其中的大写字母变小写,小写变大写,并输出。是编程题
3个回答
展开全部
下列程序经过试验,符楼主要求。
#include <stdio.h>
main()
{
char i = 0, temp[100];
scanf("%s", temp);
while(temp[i] != '\0') {
if(((temp[i] >= 'A') && (temp[i] <= 'Z')) || ((temp[i] >= 'a') && (temp[i] <= 'z')))
temp[i] ^= 0x20;
i++;
}
printf("\n%s\n", temp);
getch();
}
大小写互换,只要一次性“异或0x20”即可,不必先区分大小写。
---------
回答者 tinghost 的程序,两条IF语句,都能执行到。
先变成大写后,又能满足第二条IF的条件,又变回来,又成了小写,呵呵
“网友推荐答案”的程序,不能正常变换。
#include <stdio.h>
main()
{
char i = 0, temp[100];
scanf("%s", temp);
while(temp[i] != '\0') {
if(((temp[i] >= 'A') && (temp[i] <= 'Z')) || ((temp[i] >= 'a') && (temp[i] <= 'z')))
temp[i] ^= 0x20;
i++;
}
printf("\n%s\n", temp);
getch();
}
大小写互换,只要一次性“异或0x20”即可,不必先区分大小写。
---------
回答者 tinghost 的程序,两条IF语句,都能执行到。
先变成大写后,又能满足第二条IF的条件,又变回来,又成了小写,呵呵
“网友推荐答案”的程序,不能正常变换。
展开全部
#include<stdio.h>
void main()
{
char a[80],*p;
p=a;
scanf("%s",a);
while (*p!='\0'){
if (*p<='Z' && *p>='A') *p+=32;
p++;
}
printf("%s",a);
}
未用指针的
void main()
{
char a[80];
int i,j;
for(j=0; j<100 && a[j-1]!='#';j++)
scanf("%c",&a[j]);
for(i=0;i<j-1;i++)
{
if(('a'<=a[i] && a[i]<='z') || ('A'<=a[i] && a[i]<='Z'))
{
if('A'<=a[i] && a[i]<='Z') a[i]=a[i]+32;
else a[i]=a[i]-32;
}
printf("%c",a[i]);
}
printf("\n");
}
void main()
{
char a[80],*p;
p=a;
scanf("%s",a);
while (*p!='\0'){
if (*p<='Z' && *p>='A') *p+=32;
p++;
}
printf("%s",a);
}
未用指针的
void main()
{
char a[80];
int i,j;
for(j=0; j<100 && a[j-1]!='#';j++)
scanf("%c",&a[j]);
for(i=0;i<j-1;i++)
{
if(('a'<=a[i] && a[i]<='z') || ('A'<=a[i] && a[i]<='Z'))
{
if('A'<=a[i] && a[i]<='Z') a[i]=a[i]+32;
else a[i]=a[i]-32;
}
printf("%c",a[i]);
}
printf("\n");
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
嗯,顺手写的,的确有个地方疏忽了,加个continue就没什么问题了,呵呵
#include 'stdio.h'
main()
{
char i=0,temp[100];
scanf("%s",temp);
while((temp[i++]!='\0')||i>100)
{
if((temp[i])>='a')&&(temp[i]<='z'))
{
temp[i]-=0x20;
countinue;
}
if((temp[i])>='A')&&(temp[i]<='Z'))
temp[i]+=0x20;
}
printf("%s",temp);
}
#include 'stdio.h'
main()
{
char i=0,temp[100];
scanf("%s",temp);
while((temp[i++]!='\0')||i>100)
{
if((temp[i])>='a')&&(temp[i]<='z'))
{
temp[i]-=0x20;
countinue;
}
if((temp[i])>='A')&&(temp[i]<='Z'))
temp[i]+=0x20;
}
printf("%s",temp);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |