2012年4月17日 星期二

TQC+ C語言認證範例 202


#include<stdio.h>
#include<stdlib.h>
int main(){
    int score,adjust;
    printf("Enter score: ");
    scanf("%d",&score);
    if(score>60) adjust=score+10;
    else adjust=score+5;
    printf("after adjust score is %d",adjust);
    system("pause");
    return 0;
}

沒有留言:

張貼留言