1-1 平均数 (average) 输入3个整数,输出他们的平均值,保留三位小数 c++ c python #include <iostream> int main() { std::cout << "Hello World!"; return 0; } #include <stdio.h> int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%.3f",(a+b+c)/3.0); return 0; } ...