yun

#include <stdio.h> int main() {int i,j,upp,low,temp; char text[8][3]; upp=low=0; for(i=0;i<8;i++) {printf("please input line %d: \n",i+1); gets(text[i]); for(j=0;j<8&amp;&amp;text[i][j]!='\0';j++); {if(text[i][j]>='A'&amp;&amp; text[i][j]<='Z') upp++; else if(text[i][j]>='a' &amp;...
c程序 | 2014-04-01 16:58 | 阅读 882 次 | 评论 0 条