最基本的宏函数 课后习题9.2 (C语言代码) 摘要:解题思路利用宏函数。函数。本题的难点肯定不在算法, 应该是宏函数!带参宏定义的一般形式为: #define 宏名(形参表) 字符串;在字符串中含有各个形参。 带参宏调用的一般形式为: #define …… 题解列表 2018年12月20日 0 点赞 0 评论 628 浏览 评分:0.0
1037-宏定义的练习 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define REM(x,y) t=x%yint main(){ int a,b,t; ci…… 题解列表 2022年10月05日 0 点赞 0 评论 110 浏览 评分:0.0
1037 可以的,C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int n,x,y;scanf("%d %d",&x,&y); n=x%y;printf("%d",n); r…… 题解列表 2021年11月05日 0 点赞 0 评论 169 浏览 评分:0.0
宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Division(a,b) (a)%(b)int main(){ int a,b; scanf("%d %d"…… 题解列表 2023年10月15日 0 点赞 0 评论 69 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Y(a,b) t=a%b;int main(){ int a,b,t; scanf("%d%d",&a,&b); Y…… 题解列表 2018年07月23日 0 点赞 0 评论 414 浏览 评分:0.0
[编程入门]宏定义的练习-题解(Python代码)--这么简单的题,我竟然错了6次,惊吓 摘要:正确代码: ``` x,y=map(int,input().split()) print(x%y) ``` 错误的原因很简单,求余弄成了整除,巧合的是结果是错误50%,导致我以为是我代码没考…… 题解列表 2020年01月22日 0 点赞 0 评论 1835 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:求相除的余数就是求a%b注意事项:参考代码:/*输入两个整数,求他们相除的余数。用带参的宏来实现,编程序*/#include<stdio.h>int main(){ int a, b;…… 题解列表 2019年01月20日 0 点赞 0 评论 369 浏览 评分:0.0
这题简单吧 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d",&a,&b); c=a%b; p…… 题解列表 2023年11月28日 0 点赞 0 评论 69 浏览 评分:0.0
[编程入门]宏定义的练习 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define R(a,b) a%b int main() { int a,b,rem; scanf("…… 题解列表 2019年05月03日 0 点赞 0 评论 383 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:宏的定义注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#define D(a,b) a%bint main(){ int a,b,k; …… 题解列表 2017年12月12日 0 点赞 0 评论 541 浏览 评分:0.0