C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#define huan(a,b) t=a%bint main(){ int a,b,t;…… 题解列表 2017年12月17日 0 点赞 0 评论 765 浏览 评分: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 评论 887 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Mod(x,y) x=x%yint main(){ int x,y; scanf("%d %d",&x,&y…… 题解列表 2018年03月27日 0 点赞 0 评论 583 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#define YU(a,b) (a%b)int main(){ int a,b; scanf("%d %d",&a,&b)…… 题解列表 2018年04月27日 6 点赞 0 评论 922 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:宏的定义与使用参考代码:#include<stdio.h> #define y(a,b) a=a%b; //用宏定义求余数,最后将余数值赋给a i…… 题解列表 2018年05月24日 1 点赞 0 评论 604 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int yushu(int a,int b){ int c; c=a%b; ret…… 题解列表 2018年05月27日 0 点赞 0 评论 739 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:宏定义2个形参,并写出他们的求余式,输入2个实参,2个实参的值将代换形参a和b,并把求余所得的值赋给z,最后输出z即可。注意事项:参考代码:#include<stdio.h>#define …… 题解列表 2018年07月09日 0 点赞 0 评论 495 浏览 评分: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 评论 547 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int fun1(int a,int b){ int c; c=a%b; …… 题解列表 2018年10月13日 0 点赞 0 评论 446 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.2 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.math.*; public class Main { public static void ma…… 题解列表 2018年10月13日 0 点赞 0 评论 532 浏览 评分:0.0