2012年4月17日 星期二

TQC+ C語言認證範例 605


#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
#include<conio.h>


 int main(){
     char ch,ch2;
     printf("請輸入一小寫的字母: ");scanf("%c",&ch);
   
     ch2=toupper(ch);
     printf("%c的大寫是%c",ch,ch2);
   
     while(getchar()!='\n'){continue;}
   
     printf("\n請輸入一大寫的字母: ");
     scanf("%c",&ch);
      ch2=tolower(ch);
      printf("%c的小寫是%c\n",ch,ch2);
      system("pause");
      return 0;
      }

沒有留言:

張貼留言