摘要: #include <iostream>#include <math.h>using namespace std; int main(){ float x, y, z; cin >> x >> y >> z; float avg = (x + y + z) / 3; printf("%.3f", av 阅读全文
posted @ 2020-01-03 21:00 TyranRex 阅读(753) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdio.h>#include <stdlib.h>using namespace std;// 三数排序--从大到小void sort(float x, float y, float z){ if (x > y) { if (x > z) 阅读全文
posted @ 2020-01-03 20:32 TyranRex 阅读(277) 评论(0) 推荐(0) 编辑