int o(int a){ if(a==0) return 0; if(a==1)return 1; if(a!=0&&a!=1){ int n=a; return (n + o(a-1)); } }
🤓🤓🤓
不要发这种可以ac的代码。
共 2 条回复
🤓🤓🤓
不要发这种可以ac的代码。