c++ 3.0 2022-08-25 11:06 瀏覽數:633 來源:元素周期表 馬上練習 收藏 舉報 改錯字 #include<bits/stdc++.h>using namespace std;int main() {int a,b,c=0,d=0;for(int i=1; i<=7; i++) {cin >>a>>b;c += a;d += b; }cout <<fixed<<setprecision(2) <<1.0*c/7 <<endl <<fixed<<setprecision(2) <<1.0*d/7; return 0; } 下壹篇:我的精神家园 上壹篇:c++ 2.0