Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2538900
  • 博文数量: 308
  • 博客积分: 5547
  • 博客等级: 大校
  • 技术积分: 3782
  • 用 户 组: 普通用户
  • 注册时间: 2009-11-24 09:47
个人简介

hello world.

文章分类

全部博文(308)

分类: C/C++

2010-08-12 16:00:27


   我们使用带参数的宏,对其定义,然后再main函数中对宏进行使用,编写代码如下:
 

#include <stdio.h>
#include <math.h>
#define S(A,B,C) (((A) + (B) + (C)) / 2 )
#define AREA(A,B,C) sqrt(S(A,B,C) * (S(A,B,C) - A) * (S(A,B,C) - B) * (S(A,B,C) - C))

int main(int argc, char *argv[])
{
    int a,b,c;
    float area;
    printf("please input a,b,c:");
    scanf("%d,%d,%d",&a,&b,&c);
    area = AREA(a,b,c);
    if (a + b > c && a + c > b && b + c > a)
    {
       printf("the area is : %.2f",area);
    }
    else
    {
        printf("is not a triangle!");
    }
    system("pause");
    return 0;
}


阅读(759) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~