题目 定义一个函数,将一个字符串中的所有小写字母转换为相应的大写字母,其余字符不变。 相关知识点: 试题来源: 解析解:#include<> void main() { char a[80],*p; int i,j; gets(a); for(p=a;*p!='\0';p++) if (*p>='a' && *p<='z') *p-=32;...
include <stdio.h>void convert( char*p){ while(*p) { if(*p >='a'&& *p <='z') *p = *p - 'a' + 'A'; p++; }}int main(){ char str[] = "Long time ago, there lived a king. 1234."; puts( str ); getchar(); return 0;} ...
写自定义函数stringLower()实现将一个字符串中所有大写字母变为小写字母。在主函数中输入一含有大写字母的字符串,调用该函数并输出改变后的字符串。 操作系统 - 其它 - 写自定义函数strinTh**ns 上传16KB 文件格式 rar c++ 写自定义函数stringLower()实现将一个字符串中所有大写字母变为小写字母。在主函数中输入...
题目 利用自定义函数void fun(char c[]),由实参传来一个字符串,实现以下功能:将字符串中的大写字母转换为小写字母,其他字符不变,要求在主函数中输入字符串str并输出处理后的字符串。(15分) 相关知识点: 试题来源: 解析参考程序: #include void main()...
有大神会吗 19.题..有大神会吗19.题目:不使用 C 库函数,自定义字符串小写转大写函数。输入一个字符串以回车符为结束,调用所定义的函数,将这个字符串中所有的小写字母转换成大写字母(其余字符不变),放到一个新的字符串中,
本题要求实现一个函数,统计给定字符串中的大写字母、小写字母、空格、数字以及其它字符各有多少。 函数接口定义: 其中 是用户传入的字符串。函数须在一行内按照 的格式输出。 裁判测试程序[1]样例: 输入样例: 输出样例:相关知识点: 试题来源: 解析 void StringCount( char *s ) { int i,bletter=0,sletter=...
void f(char* str,int *p1,int *p2, int *p3,int *p4){ char* pstr=str;p1=*p2=*p3=*p4=0;while(1){ if (!*pstr){ break;} if(*pstr>='0'&&*pstr<='9'){ (*p3)++;//数字 } else if(*pstr>='A'&&*pstr<='Z'){ (*p1)++;//pstr++;} else if(*pstr==0x20)...
【简答题】以下程序的功能是:从键盘上输入一个字符串,把该字符串中的小写字母转换为大写字母,输出到文件 test.txt 中,然后从该文件读出字符串并显示出来,请填空。 #include #include main() {FILE *fp; char str[100]; int i=0; if((fp=fopen("test.txt", ___ ))==NULL) { printf("can......
#Iinclude<stdio.h>main(){ char s[20];int x;printf("请输入字符串\n");gets(s);printf("大写字母的个数:%d个\n",capcount(s));return 0;} int capcount(char *s){ char *p=s;int a=0; for(;*p!='\0';p++)if(*p>='A'&&*p<='Z')a++;return(a);} ...