[编程入门]宏定义之找最大数-题解(C++代码)数组好方便!!!!!!!!! 摘要:#include #include using namespace std; int main() {int i; int a[3]; float max=0.0; for(i=0…… 题解列表 2020年02月07日 0 点赞 0 评论 464 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> double test(double a,double b,double c); #define hong (a>=b?a:b)…… 题解列表 2017年12月11日 0 点赞 0 评论 568 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.8 (C语言代码) 摘要:解题思路:函数方法注意事项:无参考代码:#include<stdio.h>float fun(float a,float b,float c){ scanf("%f %f %f",&a,&b,&…… 题解列表 2019年01月24日 0 点赞 0 评论 306 浏览 评分:0.0
最短代码)课后习题9.8 (C语言代码) 摘要:解题思路: ——————————————注意事项:------------------------------------参考代码:# include <stdio.h># define zuidaz…… 题解列表 2019年03月23日 0 点赞 0 评论 278 浏览 评分:0.0
最笨的方法,人家用max我比了大半天 摘要:解题思路:把max函数里面的东西都写出来了注意事项:我把底层都写出来了参考代码:a,b,c=map(float,input().strip().split())if a>b: if c>a: …… 题解列表 2022年05月11日 0 点赞 0 评论 133 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N(a,b,c) ((a>b?a:b)>(c>a?c:a)?a:c)int main(void){ double a,b…… 题解列表 2018年04月21日 0 点赞 0 评论 394 浏览 评分:0.0