C++宏练习 简洁易懂 摘要:解题思路:注意事项:参考代码:#include <iostream>#define yu(a,b) (a%b) using namespace std;int main(){ int a,b,c; c…… 题解列表 2023年12月18日 0 点赞 0 评论 45 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:这题简单求余吧。。。。#include"stdio.h" main() { int a; int b; int c; scanf("%d%d",&a,&b)…… 题解列表 2017年06月10日 0 点赞 0 评论 954 浏览 评分: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
[编程入门]宏定义的练习-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2021年02月14日 0 点赞 0 评论 173 浏览 评分: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
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 评论 414 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:一定要细心!参考代码:#include <stdio.h>#define quyu(a,b) (a)%(b)int main(){ int c,a=3,b=2; scanf("%d…… 题解列表 2017年12月09日 0 点赞 0 评论 446 浏览 评分:0.0
[编程入门]宏定义的练习-题解(C++代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年03月14日 0 点赞 0 评论 312 浏览 评分: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
题解 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