摘要:
#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 阅读全文
摘要:
#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) 阅读全文