Run ID:89007
提交时间:2024-08-21 17:31:37
#include<iostream> using namespace std; int main() { int a,c,k; a=5; c=8; k=12; cout<<(a+c+k)/3<<endl; cout<<39/a<<endl; cout<<39/c<<endl; cout<<39/k<<endl; cout<<39%a<<endl; cout<<39%c<<endl; cout<<39%k<<endl; return 0; }