高级守护
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~一片汪洋~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
初级光能
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
中级光能
高级做法[滑稽]
string n="Hello World";
for(int i=0; i<n.length(); i++)
{
cout<<n.at(i);
}
平民做法[滑稽]
cout<<"Hello World";
printf("Hello World");
/*其实我知道我泡在
~~~~~~~~~~~~
大海之中
~~~~~~~~~~~~~~
*/
新手光能
#include<bits/stdc++.h>
using namespace std;
int cnt;
char c[]={'H','e','l','l','o',',',' ','W','o','r','l','d','!'};
void dfs(int i){
if(c[i]=='\0') return ;
cout<<c[i];
dfs(i+1);
}
int main(){
dfs(0);
return 0;
}
1000的递归写法
郑思予在2021-09-24 13:25:22追加了内容
问答高质量水帖(梗:人类高质量男**)
郑思予在2021-09-24 13:26:08追加了内容