1115: DNA python版本 摘要:```python N = int(input()) for z in range(N): if z != 0: print() a,b=map(int,input().strip(…… 题解列表 2021年11月01日 0 点赞 0 评论 365 浏览 评分:9.9
1095 清晰解答 摘要:解题思路:注意事项:就是坑,考虑的细节较多参考代码:while True: try: i,j = map(int,input().split()) print(i,j…… 题解列表 2021年11月01日 0 点赞 0 评论 823 浏览 评分:9.9
二级C语言-平均值计算(C语言代码) 摘要:我是一位刚上大一的新手,希望各位大佬支持支持。参考代码:#include<stdio.h>int main(){ int number[10],i,n,sum = 0,average = 0,x…… 题解列表 2021年11月01日 0 点赞 9 评论 1177 浏览 评分:9.0
入门写法 c语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int judge(int);int main(){ int a,su,x; scanf("%d",&a); x=judge(a)…… 题解列表 2021年11月01日 0 点赞 0 评论 241 浏览 评分:9.9
字符逆序(c语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; gets(a); int i; while(a[i]!=…… 题解列表 2021年11月01日 0 点赞 1 评论 185 浏览 评分:9.3
震惊!“二级C语言-计算素数和”竟然如此简单!!!(c语言代码) 摘要:解题思路:注意事项:参考代码:#includeint isprime(int x); int main() { int m,n,i,sum=0; scanf("%d%d",&m…… 题解列表 2021年11月01日 0 点赞 0 评论 686 浏览 评分:6.0
筛法求之N内的素数,思路简单,操作容易!!(c语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); int i,j; …… 题解列表 2021年11月01日 0 点赞 0 评论 589 浏览 评分:9.9
强行用一维数组解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[10],i,j,b; for(i=0;i<9;i++) scanf("%d",&a[i…… 题解列表 2021年11月01日 0 点赞 0 评论 198 浏览 评分:0.0
1111: Cylinder ,python版本 摘要:pi = 3.14159265358while True: try: w,h=map(int,input().strip().split()) if w == 0 and h == 0: …… 题解列表 2021年11月01日 0 点赞 1 评论 329 浏览 评分:0.0
1171: 蟠桃记 摘要:解题思路:从最后一天往前推注意事项:参考代码:while True: n=int(input()) s=1 for i in range(n-1): s=(s+1)*2…… 题解列表 2021年11月01日 0 点赞 0 评论 308 浏览 评分:0.0