2012年4月17日 星期二

TQC+ C語言認證範例 706


#include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main(){
    int x,y;
    double result;
    printf("Enter x,y: ");
    scanf("%d %d",&x,&y);
   
    result=exp(5)*sqrt(pow(x,y)+log(100))/pow(x,2)*pow(y,3);
    printf("result=%f\n",result);
    system("pause");
    return 0;
}

沒有留言:

張貼留言