2021年3月6日
摘要: #include<iostream>using namespace std;int main(){ cout.setf(ios_base::fixed,ios_base::floatfield); float tub=10.0/3.0; double mint=10.0/3.0; const flo 阅读全文
posted @ 2021-03-06 21:52 HuJiao粉 阅读(57) 评论(0) 推荐(0)
摘要: #include<iostream>using namespace std;int main(){ cout<<"\aOperation\"HyperHype\" is now activated!\n"; cout<<"Enter your agent code:_______\b\b\b\b\b 阅读全文
posted @ 2021-03-06 19:32 HuJiao粉 阅读(25) 评论(0) 推荐(0)
摘要: #include<iostream>using namespace std;int main(){ int chest=42; int waist=42; int inseam=42; cout<<"Monsieur cuts a striking figure!"<<endl; cout<<"ch 阅读全文
posted @ 2021-03-06 17:08 HuJiao粉 阅读(26) 评论(0) 推荐(0)
摘要: #include<iostream>#include<climits>#define ZERO 0;using namespace std;int main(){ short sam=SHRT_MAX; unsigned short sue=sam; cout<<"Sam has "<<sam<<" 阅读全文
posted @ 2021-03-06 16:48 HuJiao粉 阅读(46) 评论(0) 推荐(0)
摘要: #include<iostream>#include<climits>using namespace std;int main(){ int n_int=INT_MAX; short n_short=SHRT_MAX; long n_long=LONG_MAX; long long n_llong= 阅读全文
posted @ 2021-03-06 16:10 HuJiao粉 阅读(58) 评论(0) 推荐(0)
摘要: 2.7-3 #include<iostream>using namespace std;void mice();void oneint();int main(){ mice(); mice(); oneint(); oneint(); system("pause");}void mice(){ co 阅读全文
posted @ 2021-03-06 13:16 HuJiao粉 阅读(38) 评论(0) 推荐(0)