7455
include
using namespace std; int zhshu(int x){ if(x==5){ return 10; }else{ return zhshu(x+1)+2; } } int main(){ int n=1; cout<<zhshu(n); return 0; }
7455
using namespace std; int zhshu(int x){ if(x==5){ return 10; }else{ return zhshu(x+1)+2; } } int main(){ int n=1; cout<<zhshu(n); return 0; }
可以用@mike来提到mike这个用户,mike会被高亮显示。如果你真的想打“@”这个字符,请用“@@”。