摘要: 小壁灯上楼梯 #include <iostream> using namespace std; int a(int c){ if(c<=2){ return c; }else{ return a(c-1)+(c-2); } } int main(int argc, char** argv) { in 阅读全文
posted @ 2023-11-04 09:32 黛玉醉打将门神 阅读(9) 评论(0) 推荐(0)