摘要: #include <iostream> #include <cstdio> #include <string> using namespace std; string fun() //功能单元:输入一个字符串,对它进行解密并且返回展开后的字符串 { char c; string s="",s1; w 阅读全文
posted @ 2020-08-18 10:34 py佐料 阅读(187) 评论(0) 推荐(0)
摘要: //递归 #include <iostream> #include <cstdio> using namespace std; int a[100]; int fun(int n) { if(n==0) return 1; if(n==1) return 1; if(n==2) return 2; 阅读全文
posted @ 2020-08-18 08:18 py佐料 阅读(201) 评论(0) 推荐(0)