2012年4月17日 星期二

TQC+ C語言認證範例 909


#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(){
    char A[10],B[100],C[100],n;
   
    printf("請輸入字串A:");gets(A);
    printf("字串A的長度:%d\n",strlen(A));
    strcpy(B,A);
     printf("字串B:%s\n",B);
   
     printf("請輸入字串C:");gets(C);
     n=strcmp(C,A);
     if(n>0) printf("字串A大於字串C\n");
                       else if(n==0) printf("字串A等於字串C\n");
                            else printf("字串A小於字串C\n");
                           
    system("pause");
    return 0;
}

沒有留言:

張貼留言