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 评论 361 浏览 评分:0.0
编写题解 1037: [编程入门]宏定义的练习(简洁python解) 摘要:解题思路:python中未涉及宏定义 注意事项:参考代码:a,b = map(int,input().split())print(a%b)…… 题解列表 2022年01月22日 0 点赞 0 评论 570 浏览 评分:7.5
1037: [编程入门]宏定义的练习 摘要:解题思路:和上一题一样,主要是为了练习宏定义的格式。注意事项:无,甚至不用写注释。参考代码:#include <iostream> #define REMAINDER(num1, num2) (…… 题解列表 2022年03月04日 0 点赞 1 评论 510 浏览 评分:9.9
编写题解 1037: [编程入门]宏定义的练习--解题 摘要:解题思路:注意事项:参考代码:#include <iostream>#define REMAINDER(num1, num2) (num1 % num2)using namespace std;int…… 题解列表 2022年03月08日 0 点赞 0 评论 129 浏览 评分:0.0
【1037题】python入门题之宏定义的练习(方法类似1000题简单的a+b) 摘要:解题思路:首先取余就是a%b 就如同相加是a+b一样,相除是a、b一样,map的描述 map() 会根据提供的函数对指定序列做映射。第一个参数 function 以参数序列中的每一个元素调用 fun…… 题解列表 2022年04月11日 0 点赞 0 评论 299 浏览 评分:0.0
[编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; co…… 题解列表 2022年05月06日 0 点赞 0 评论 125 浏览 评分:0.0
水了一道题 摘要:解题思路:准备去上课了。。注意事项:ye有人不明白宏是什么了,看来自己是进错区域了,所以才会觉得这么简单,投机取巧了,但是对我提高信心很有帮助啊哈哈哈希望有,宏记得在office,Excel里面有听过…… 题解列表 2022年05月10日 0 点赞 0 评论 209 浏览 评分:0.0
1037: [编程入门]宏定义的练习 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月13日 0 点赞 0 评论 247 浏览 评分:0.0
1037 宏定义的练习 摘要:解题思路:1.输入两个整数2.求两个整数相除的余数注意事项:参考代码: a,b = map(int,input().split()) print(a%b)…… 题解列表 2022年05月17日 0 点赞 0 评论 532 浏览 评分:8.7
1037: [编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define swap(a,b) printf("%d",a%b); int main() { int a,b; scan…… 题解列表 2022年06月13日 0 点赞 0 评论 187 浏览 评分:0.0