1124: C语言训练-大、小写问题 摘要:```cpp #include int main() { char s[1000]; gets(s); int len1=strlen(s); for(int i=0;i='A'…… 题解列表 2022年12月06日 0 点赞 0 评论 441 浏览 评分:9.9
1032: [编程入门]自定义函数之字符串连接 摘要:```cpp #include int main() { char s[1000],t[1000]; gets(s); int len1=strlen(s); gets(t); …… 题解列表 2022年12月06日 0 点赞 0 评论 942 浏览 评分:7.3
1031: [编程入门]自定义函数之字符串反转 摘要:```cpp #include int main() { char s[1000]; gets(s); int len=strlen(s); for(int i=len-1;i>…… 题解列表 2022年12月06日 0 点赞 0 评论 410 浏览 评分:9.9
1046: [编程入门]自定义函数之数字后移 摘要:```cpp #include #define N 1005 int a[N]; int main() { int i,n,m; scanf("%d",&n); for(i=0;…… 题解列表 2022年12月06日 0 点赞 0 评论 356 浏览 评分:9.9
1045: [编程入门]自定义函数之整数处理 摘要:```cpp #include using namespace std; int a[10],i,maxx=0,minn=10000,m,n; void scanf() { for(i=…… 题解列表 2022年12月06日 0 点赞 0 评论 450 浏览 评分:9.9
题解 : DNA【Python】 摘要:解题思路:对于一个单位的dna串,我们可以先打印其a-1行,重复b-1次,然后打印最后一行:参考代码:def dna(a): # 先创建 (a-1)*a 的二维列表,元素都为 空格'…… 题解列表 2022年12月06日 0 点赞 0 评论 569 浏览 评分:9.9
1035: [编程入门]自定义函数之字符类型统计 摘要:```cpp #include int zimu=0,num=0,kong=0,other=0,i; int main() { char s[1000]; gets(s); int…… 题解列表 2022年12月06日 0 点赞 0 评论 458 浏览 评分:9.9
1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;queue<char>mem;int main(){ int i; char a; …… 题解列表 2022年12月06日 0 点赞 0 评论 392 浏览 评分:9.9
C语言简便易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,s=0; scanf("%d",&n); while(n!=0) …… 题解列表 2022年12月05日 0 点赞 2 评论 1002 浏览 评分:9.9