C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 宏练习 */ #include<stdio.h> #define F(a,b) a%b int main() { int a,b,c; …… 题解列表 2017年10月29日 1 点赞 0 评论 751 浏览 评分:0.0
[编程入门]宏定义的练习-题解(C语言代码) 摘要: #include #define chu(a,b) c=a%b int main() { int a,b,c; scanf("%d %d…… 题解列表 2020年03月10日 0 点赞 0 评论 308 浏览 评分:0.0
[编程入门]宏定义的练习 (C语言代码)。。。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N(x,y) t=x%y;int main(){ int x,y,t; scanf("%d%d",&x,&y); N(x…… 题解列表 2019年05月01日 0 点赞 0 评论 380 浏览 评分:0.0
1037宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; int c; scanf("%d %d",&a,&b); c=a%b; printf("%d\…… 题解列表 2022年01月03日 0 点赞 0 评论 188 浏览 评分:0.0
[编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; co…… 题解列表 2022年05月06日 0 点赞 0 评论 78 浏览 评分:0.0
题解 1037: [编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if(a>b): print(a%b)else: print(b%a)…… 题解列表 2021年08月02日 0 点赞 0 评论 264 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:/* 输入两个整数,求他们相除的余数。用带参的宏来实现,编程序。 */ #include<stdio.h> #define F(A,B) (A)=(A)%(B) int main(voi…… 题解列表 2017年07月03日 0 点赞 0 评论 875 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define YU(x,y) x%y int main() { int x,y; scanf("%d %d…… 题解列表 2024年04月27日 0 点赞 0 评论 89 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define yu(a,b) a%bint main(){ int a,b; scanf("%d%d",&a,&b); …… 题解列表 2018年11月30日 0 点赞 0 评论 235 浏览 评分:0.0
输入两个整数,求他们相除的余数。用带参的宏来实现,编程序。 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#pragma warning(disable : 4996)#define AUM(a,b) c=a%b;int main(){ …… 题解列表 2024年09月01日 0 点赞 0 评论 105 浏览 评分:0.0