2012年4月17日 星期二

TQC+ C語言認證範例 509


#include<stdio.h>
#include<stdlib.h>
int main(){
    struct triangle{
           int width;
           int height;
           };
    struct triangle *ptri;
    double area;
    ptri=(struct triangle*)malloc(sizeof(struct triangle));
   
    printf("請輸入三角形的底為多少: ");
    scanf("%d",&ptri->width);
    printf("請輸入三角形的高為多少: ");
    scanf("%d",&ptri->height);
   
    area=(double)(ptri->width*ptri->height)/2;
    printf("面積為%.2f\n",area);
    system("pause");
    return 0;
}
   

沒有留言:

張貼留言