摘要: #include #include char String[30]; int Length; void Reverse(int N) { if (N < Length) { Reverse(N + 1); printf("%c", String[N]); } } void main() { printf("Please enter s... 阅读全文
posted @ 2018-07-01 23:13 lifeless_faultless 阅读(312) 评论(0) 推荐(0)
摘要: #include #include int Multiply(int M, int N) { int Result; if (N == 1) { Result = M; } else { Result = M + Multiply(M, N-1); } return Result; } voi... 阅读全文
posted @ 2018-07-01 18:06 lifeless_faultless 阅读(257) 评论(0) 推荐(0)