2012年4月17日 星期二

TQC+ C語言認證範例 507


#include<stdio.h>
#include<stdlib.h>
int main(){
    struct company{
           char name[10];
           int hour;
           double pay;
           };
    struct company employee[5]={
           {"John",20,100.34},
           {"Mary",30,99.78},
           {"Peter",25,89.45},
           {"Nancy",33,87.42},
           {"Tom",54,77.89}
           };
    double salary[5];
    int i;
    for(i=0;i<5;i++){
                     salary[i]=employee[i].hour*employee[i].pay;
                     printf("%-10s 的薪水為 %.2f\n",employee[i].name,salary[i]);
                     }
    system("pause");
    return 0;
}

沒有留言:

張貼留言