问题补充说明:1. 写一个函数,将字符串中的小写字母转换成大写字母。在main函数中输入字符串,并输出结果。main(){ void convert(); /* 函数说明 */ char str[10]; printf("\nInput a string:"); scanf("%s", str); 【\ 】 printf("\nOutput the string:%s", str);}void convert(char p[10]) /* 函数定义 */{ int i=0; while (*(p+i) !='\0') { if (*(p+i)>='a' && *(p+i)<='z') *(p+i)=*(p+i)-【 】; /* 将小写字母转换为大写字母 */ i++; }}
#include<stdio.h>intmain()控短{voidconvert();/*函数说明*/charstr[10];prin360问答tf("\nInputastring:");scanf("%s",str);convert(str);printf("\nOutputthestring:%s",str);return0;}voidconvert(charp歌李践很马候连财急[10])/*函数定义*/派再火临开慢沉{inti=0;wh达该吗德工转算适ile(*(p+i)!='\0'){if(*(p+i)>='a'&&*(p+i)<='z')*(p+i)=*(p+i)-32;/*将小写前字母转换为大写字母*/i++;}}
标签:母变,大写,写字