C语言程序设计教程(第三版)课后习题9.2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ int a,b; scanf("%d%d",&a,&b); printf("%d",a%b); …… 题解列表 2017年07月27日 0 点赞 0 评论 934 浏览 评分:0.0
琪露诺的编程教室 (C++代码) 摘要:解题思路:“上海xx,上海xx,最大粉店,八百万辣鸡粉店倒闭了!王八蛋老板秋生吃喝嫖赌,欠下了450个亿,带着他的红白跑了。我们没有办法,只能拿着工资换辣鸡粉。原价都是800的辣鸡粉,通通12450块…… 题解列表 2017年12月16日 0 点赞 0 评论 877 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#define Y(a,b) (a%b)using namespace std;int main(){ int a,b; cin>>…… 题解列表 2017年12月23日 0 点赞 0 评论 776 浏览 评分:0.0
[水]宏定义的练习 (C++代码) 摘要:解题思路: 求余数?翻译一下就是求余注意事项: 注意点: 求余只能是整数,当然题目中也说明了,所以变量只能开int参考代码:#include<bits/stdc++.h>using …… 题解列表 2019年04月16日 0 点赞 0 评论 355 浏览 评分:0.0
[编程入门]宏定义的练习-题解(C++代码) 摘要: `#include using namespace std; #define div(a,b) a%b int main(){ int i,j; …… 题解列表 2020年02月06日 0 点赞 0 评论 1485 浏览 评分:9.9
[编程入门]宏定义的练习-题解(C++代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年03月14日 0 点赞 0 评论 299 浏览 评分:0.0
[编程入门]宏定义的练习-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;#define RMD(a,b) a%b;int main(){ int a1,b1; ci…… 题解列表 2020年08月06日 0 点赞 0 评论 699 浏览 评分:9.9
[编程入门]宏定义的练习(C++)(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define s(a,b) a%bint main(){ int a,b,t; cin>>a…… 题解列表 2021年11月14日 0 点赞 0 评论 407 浏览 评分:9.9
C++宏定义求余数 摘要:解题思路:#define remainder a%b注意事项:暂时不明参考代码:#include<iostream>#include<string>using namespace std;#defin…… 题解列表 2021年12月28日 0 点赞 0 评论 220 浏览 评分:0.0
1037: [编程入门]宏定义的练习 摘要:解题思路:和上一题一样,主要是为了练习宏定义的格式。注意事项:无,甚至不用写注释。参考代码:#include <iostream> #define REMAINDER(num1, num2) (…… 题解列表 2022年03月04日 0 点赞 1 评论 453 浏览 评分:9.9