Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90942 | 石水生 | 05买水果 | C++ | Accepted | 1 MS | 264 KB | 234 | 2024-09-20 14:53:33 |
#include <bits/stdc++.h> using namespace std; int main(){ int a=5,b=8,c=12; double average =(a+b+c)/3.0; printf("%.3f\n",average); cout<<39/a<<" "<<39%a<<endl; cout<<39/b<<" "<<39%b<<endl; cout<<39/c<<" "<<39%c<<endl; }