yun

作者在 2014-04-01 16:58:56 发布以下内容

#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&&text[i][j]!='\0';j++);
{if(text[i][j]>='A'&& text[i][j]<='Z')
 upp++;
 else if(text[i][j]>='a' && text[i][j]<='z')
 low++;
   
  if(text[i][j]>text[i][j+1])
 {temp=text[i][j+1];
 text[i][j+1]=text[i][j];
 text[i][j]=temp;
 }

}
}
printf("\nupper case :%d\n",upp);
printf("\nlower case :%d\n",low);
printf("The changed array is: \n");
for(i=0;i<8;i++)
 for(i=0;i<8;i++)
 printf("%d",text[i][j]);

}

c程序 | 阅读 883 次
文章评论,共0条
游客请输入验证码