[编程入门]宏定义的练习 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define R(a,b) a%b int main() { int a,b,rem; scanf("…… 题解列表 2019年05月03日 0 点赞 0 评论 376 浏览 评分:0.0
[编程入门]宏定义的练习-题解(Java代码) 摘要:参考代码:import java.util.Scanner;public class Main { public static void remainder(int a, int b){ …… 题解列表 2020年12月04日 0 点赞 0 评论 243 浏览 评分:0.0
C++宏练习 简洁易懂 摘要:解题思路:注意事项:参考代码:#include <iostream>#define yu(a,b) (a%b) using namespace std;int main(){ int a,b,c; c…… 题解列表 2023年12月18日 0 点赞 0 评论 40 浏览 评分: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 评论 167 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:#include<stdio.h> #define S(a,b) (a)%(b) int main() { int a,b; scanf("%d%d",&a,&b); printf(…… 题解列表 2017年12月06日 1 点赞 0 评论 866 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define qiuyu(a,b) a%bint main(){ int a,b; scanf("%d%d",&a,&b); prin…… 题解列表 2019年02月01日 0 点赞 0 评论 302 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:/* 输入两个整数,求他们相除的余数。用带参的宏来实现,编程序。 */ #include<stdio.h> #define F(A,B) (A)=(A)%(B) int main(voi…… 题解列表 2017年07月03日 0 点赞 0 评论 866 浏览 评分: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 评论 406 浏览 评分:0.0
[编程入门]宏定义的练习 与输入顺序无关(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define sq(m,n) m-(m/n)*nint main(){ int x,y,sq,temp; scanf("%d%d",&…… 题解列表 2019年05月11日 0 点赞 0 评论 309 浏览 评分:0.0
1037: [编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define swap(a,b) printf("%d",a%b); int main() { int a,b; scan…… 题解列表 2022年06月13日 0 点赞 0 评论 111 浏览 评分:0.0