5555555555555老师留的作业我不会怎么办啊
作业是 1求字符串长度2求字符串大小写的个数3输出字符串哥哥姐姐们谁能告诉我啊 我还没学到指针的5555555555555555
#include <string.h> #include<stdio.h> void main(void) { int Lowercase_count=0; int Uppecase_count =0; char str[20]={"MYnAmeIsJielY"},*p=str; while(*p!='\0') { if(*p>='A'&&*p<='Z') { Uppecase_count++; }/*if*/ else { Lowercase_count++; } /*else*/ p++; }/*while*/ printf("%d %d\n",Uppecase_count,Lowercase_count);/*print the number of uppecase and lowercase*/ printf("%d\n",strlen(str));/*get the length of the string*/ getch(); }
程序不够完善,大家可以修改