摘要: #include <iostream> using namespace std;void judge_triangle(int L, int m, int s); // 若函数调用顺序和函数的编写不一致,需要声明函数// 三数排序--从大到小void trangle(int x, int y, in 阅读全文
posted @ 2020-01-06 19:05 TyranRex 阅读(886) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <math.h>using namespace std; // 输出一个数的绝对值--自定义或者使用math.h中的abs()函数void abs_value(float n){ if (n < 0) printf("该数%f是负数,输出它的相 阅读全文
posted @ 2020-01-06 17:33 TyranRex 阅读(695) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>// 常量可用静态常量定义,也可使用宏定义#define sum 300#define dis 0.85#define price 95using namespace std; void discount(int num){ if (num * price <= 阅读全文
posted @ 2020-01-06 17:20 TyranRex 阅读(216) 评论(0) 推荐(0) 编辑