题解列表

筛选

2749: Hello, World!

摘要:高级解法之画蛇添足 ``` #include using namespace std; int main(){ string a="Hello",b="World!" co……

1141: C语言训练-百钱百鸡问题

摘要:1. 抓住oj漏洞,一般无输入的题都可以这么做,像这种题一般只会有一个测试点: ![](/image_editor_upload/20231114/20231114103015_67548.png)……

3018: 末两位数

摘要: ``` #include using namespace std; int main(){ int n,ans=1; cin>>n; for( int i=1; i……

2820: 含k个3的数

摘要:``` #include using namespace std; int m,k,n,x; int main(){ cin>>m>>k; x=m; for( int i=1;i……