编写题解 1037: [编程入门]宏定义的练习(简洁python解) 摘要:解题思路:python中未涉及宏定义 注意事项:参考代码:a,b = map(int,input().split())print(a%b)…… 题解列表 2022年01月22日 0 点赞 0 评论 509 浏览 评分:7.5
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 评论 176 浏览 评分:0.0
C++宏定义求余数 摘要:解题思路:#define remainder a%b注意事项:暂时不明参考代码:#include<iostream>#include<string>using namespace std;#defin…… 题解列表 2021年12月28日 0 点赞 0 评论 220 浏览 评分:0.0
宏定义的练习-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#define area a%bint main(){ int a,b; scanf("%d…… 题解列表 2021年12月13日 0 点赞 0 评论 187 浏览 评分:0.0
[编程入门]宏定义的练习(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
什么是宏定义?反正这样可以算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main () { int a,b; scanf("%d%d",&a,&b); …… 题解列表 2021年11月11日 0 点赞 0 评论 209 浏览 评分:2.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 评论 168 浏览 评分:0.0
编写题解 1037: [编程入门]python代码 摘要:解题思路:注意事项:宏定义是C语言里的,python没有参考代码:a,b = map(int,input().split())c = a%bprint(c)…… 题解列表 2021年10月13日 0 点赞 0 评论 363 浏览 评分:8.0
题解 1037: [编程入门]宏定义的练习 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if(a>b): print(a%b)else: print(b%a)…… 题解列表 2021年08月02日 0 点赞 0 评论 258 浏览 评分:0.0
python 超简单写法 摘要:解题思路:注意事项:注意题目是求余数 python的/是除 %求余参考代码:a,b=map(int,input().strip().split())print(a%b)…… 题解列表 2021年05月01日 0 点赞 0 评论 263 浏览 评分:0.0