码迷,mamicode.com
首页 > 编程语言 > 详细

1037: C语言程序设计教程(第三版)课后习题9.2

时间:2017-11-20 15:42:05      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:return   ret   efi   include   stdio.h   ons   c语言程序   col   amp   

题目描述

输入两个整数,求他们相除的余数。用带参的宏来实现,编程序。

输入

a b两个数

输出

a/b的余数

样例输入

3 2

样例输出

1

 1 #include <stdio.h>
 2 #define Divide(a, b) res = a % b;
 3 int main(int argc, char const *argv[])
 4 {
 5     int a, b, res;
 6     scanf("%d%d", &a, &b);
 7 
 8     Divide(a, b);
 9 
10     printf("%d\n", res);
11     return 0;
12 }

 

1037: C语言程序设计教程(第三版)课后习题9.2

标签:return   ret   efi   include   stdio.h   ons   c语言程序   col   amp   

原文地址:http://www.cnblogs.com/hello-lijj/p/7866462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!