hwytiger @ 2021-01-27 23:16:22
这题也太多了吧
by _caiji_ @ 2021-01-27 23:17:03
pss,sqlm
by _caiji_ @ 2021-01-27 23:18:44
这道题就是练习如何把数学语言转成C++语言,别嫌多
by PragmaGCC @ 2021-01-27 23:34:39
这题做起来确实挺难受的,不过花点时间写写也可以
by 忘怀星 @ 2021-01-27 23:49:17
可能难受的是问题一?(危)
by TG_Space_Station @ 2021-02-02 20:38:12
不用写那么多,这样就好了,把答案自己算出来输出就行了(花括号都不用打):
#include<bits/stdc++.h>
using namespace std;
int main()
{
int T;
cin>>T;
if(T==1) cout<<"I love Luogu!";
if(T==2) cout<<6<<" "<<4;
if(T==3) cout<<3<<endl<<12<<endl<<2;
if(T==4) cout<<166.667;
if(T==5) cout<<15;
if(T==6) cout<<10.8167<<endl;
if(T==7) cout<<110<<endl<<90<<endl<<0;
if(T==8) cout<<31.4159<<endl<<78.5398<<endl<<523.599;
if(T==9) cout<<22;
if(T==10) cout<<9;
if(T==11) cout<<33.3333;
if(T==12) cout<<13<<endl<<"R";
if(T==13) cout<<16;
if(T==14) cout<<50;
return 0;
}