“我们”用c语言该怎么编写?多谢高手赐教!

2024-11-30 09:49:50
推荐回答(2个)
回答1:

#include <唯巧stdio.h>

int main()

{


printf("我明山穗激卜们\n");

return 0;

}

回答2:

已经改正含埋桥了谈猛,液埋运行通过:
#include
int main()
{
char tmp;
scanf("%c",&tmp);
if(tmp>=65&&tmp<=90)
{
tmp=tmp+32;
printf("%c\n",tmp);
return 0;
}
if(tmp>=97&&tmp<=122)
{
tmp=tmp-32;
printf("%c\n",tmp);
return 0;
}
}