题解 1461: 蓝桥杯基础练习VIP-FJ的字符串

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

使用递归解决这道题目

摘要:解题思路:使用递归解决这道题 非常easy注意事项:理解递归参考代码:#include<iostream>#include<string>using namespace std;string  f(i……

递归永远的神

摘要:看到这题时,就想着用递归做。参考代码:#include<stdio.h> void fun(int n) { if(n==1) printf("A");  else  { ……

题解 1461: FJ的字符串

摘要:解题思路:递归调用输出注意事项:参考代码:#include<stdio.h>void shuchu(int n){    if(n==1)        printf("%c",&#39;A&#39;……

python解题FJ的字符串

摘要:解题思路: 先将会用到的字符串存在列表里,需要时取出来就行参考代码:n = int(input()) s=[] for i in range(n):     s.append(chr(65+i)……

容易理解的C语言代码

摘要:解题思路:注意事项:    数组长度要足够大,不然存储不了,空间不够参考代码:#include <stdio.h> #include <string.h> int main() {     i……