解题思路:
注意事项:
参考代码:
#include <stdio.h> #include <iostream> #include <algorithm> #include <string> #include <fstream> using namespace std; char A[27] = {'\0','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'}; int main() { int n = 0; cin >> n; if(n == 1) cout << 'A' << endl; else { int i = 2; string str = "A"; while (i <= n) { str = str + A[i] + str; i++; } cout << str << endl; } return 0; } 【思路二】 #include <iostream> #include <string> using namespace std; string Fun(int n) { string N; N = 'A' + n - 1; string ans; if(n == 1) return N; else { ans = Fun(n - 1); return ans + N + ans; } } int main(void) { int n; cin >> n; cout << Fun(n) << endl; return 0; }
0.0分
0 人评分
【亲和数】 (C语言代码)浏览:530 |
大小写转换 (C语言代码)浏览:907 |
最长单词 (C语言代码)浏览:1498 |
C语言程序设计教程(第三版)课后习题1.6 (C++代码)浏览:909 |
简单的a+b (C语言代码)浏览:564 |
C语言训练-大、小写问题 (C语言代码)浏览:794 |
【排队买票】 (C语言代码)浏览:945 |
C语言程序设计教程(第三版)课后习题6.5 (C++代码)浏览:487 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:583 |
1017题解浏览:663 |