1853: 蓝桥杯基础练习-数列排序 摘要:解题思路:主要搞清如何输入字符串就可以轻松解决参考代码:n=int(input())m=list(map(int,input().split()))for j in range(n): for …… 题解列表 2021年03月01日 0 点赞 0 评论 619 浏览 评分:9.9
1088: A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,num,sum=0;//个数、数据、总和 while(scanf("%d",&n)==1){ …… 题解列表 2021年03月01日 0 点赞 0 评论 198 浏览 评分:0.0
A+B for Input-Output Practice (III) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)==2) { if(a==0&&b==0…… 题解列表 2021年03月01日 0 点赞 0 评论 474 浏览 评分:0.0
1086: A+B for Input-Output Practice (II) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n;//数组行数 int arr[n][2]; int sum[n]; scanf("%d",&n)…… 题解列表 2021年03月01日 0 点赞 0 评论 390 浏览 评分:0.0
1085: A+B for Input-Output Practice (I) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)==2) printf("%d\n",a…… 题解列表 2021年03月01日 0 点赞 0 评论 335 浏览 评分:0.0
1053: 二级C语言-平均值计算 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define LEN 10int main(){ int arr[LEN]; int num=0; //大于平均数的个数 floa…… 题解列表 2021年03月01日 0 点赞 0 评论 224 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define LEN 100 //最大数量 typedef struct stu { char id[10]; char name…… 题解列表 2021年03月01日 0 点赞 0 评论 372 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define LEN 100 //最大长度 typedef struct stu { char id[10]; char name[…… 题解列表 2021年03月01日 0 点赞 0 评论 237 浏览 评分:0.0
求平方和 c语言 摘要:解题思路:没有啥思路用手就行。注意事项:注意学好数学反复复习不然你还要去百度差真丢脸。参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d"…… 题解列表 2021年03月01日 0 点赞 0 评论 405 浏览 评分:0.0
编程入门]打印图案 c语言 摘要:解题思路:没啥思路有手就行。注意事项:注意下面是五个米。参考代码:#include<stdio.h>void main(){ printf(" *\n"); printf(" * *\n"); pr…… 题解列表 2021年03月01日 0 点赞 1 评论 234 浏览 评分:6.0