二级C语言-平均值计算(C语言代码) 摘要:我是一位刚上大一的新手,希望各位大佬支持支持。参考代码:#include<stdio.h>int main(){ int number[10],i,n,sum = 0,average = 0,x…… 题解列表 2021年11月01日 0 点赞 9 评论 1452 浏览 评分: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 评论 496 浏览 评分:9.9
字符逆序(c语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; gets(a); int i; while(a[i]!=…… 题解列表 2021年11月01日 0 点赞 1 评论 419 浏览 评分: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 评论 1015 浏览 评分:6.0
筛法求之N内的素数,思路简单,操作容易!!(c语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); int i,j; …… 题解列表 2021年11月01日 0 点赞 0 评论 959 浏览 评分: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 评论 481 浏览 评分: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 评论 601 浏览 评分: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 评论 652 浏览 评分:0.0
1183: 人见人爱A+B 摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n): a,b,c,d,e,f=map(int,input().split()) s=(c+f)%6…… 题解列表 2021年11月01日 0 点赞 0 评论 960 浏览 评分:7.0
1953 666C语言 good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,c,x; scanf ("%d",&x); a=x/1%10;b=x/10%10;c=x/1…… 题解列表 2021年11月01日 0 点赞 0 评论 500 浏览 评分:0.0