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

hello world.

文章分类

全部博文(308)

分类: C/C++

2010-08-12 15:32:50

    输入两个整数,求他们相除后的余数。用带参的宏来实现,编程序。
    我们使用带参数的宏,不过使用宏的时候要主要,记得要加括号,以防止程序出现逻辑错误。代码如下:
 

#include <stdio.h>
#define GET_YU_SHU(a,b) (a) % (b)

int main(int argc, char *argv[])
{
    int a,b,c;
    printf("please input a,b number:");
    scanf("%d,%d",&a,&b);
    c = GET_YU_SHU(a,b);
    printf("the yushu is :%d ",c);

    system("pause");
    return 0;
}


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