题解: 蓝桥杯算法训练VIP-提货单【Python】 摘要:注意事项:最终格式化输出,小数点保留6位。参考代码:N = int(input()) inf = [] for i in range(N): inf.append(list(input(…… 题解列表 2022年12月06日 0 点赞 0 评论 483 浏览 评分:9.9
蓝桥杯算法提高VIP-单词个数统计 摘要:#include<bits/stdc++.h> using namespace std; int main(void){ int cnt=1; string s; getline(ci…… 题解列表 2022年12月06日 0 点赞 0 评论 478 浏览 评分:9.9
菜鸟首次尝试(python)超简单解法 解题思路:先写个输入,再用for循环来表示饥行,count_hang来记录行数,最后打印出来就行注意事项:参考代码:n=int(input())count_hang=0foriinrange(n):count_hang+=1ls=(input().split())a=max(ls)t=ab=tifa> 题解列表 2022年12月06日 0 点赞 0 评论 657 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 ```cpp#includeintmonth[13]={0,31,28,31,30,31,30,31,31,30,31,30,31},i,sum=0;structtime{intyear;intm;intday;}t;intmain(){scanf("%d%d%d", 题解列表 2022年12月06日 0 点赞 0 评论 512 浏览 评分:9.9
一种超简单的方法 摘要:#include int main() { double n,m; scanf("%lf",&n); if(n…… 题解列表 2022年12月06日 0 点赞 0 评论 634 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 ```cpp#includestructstudent{charid[100];charname[100];intscore[3];}s;voidinput(){scanf("%s%s%d%d%d",s.id,s.name,&s.score[0], 题解列表 2022年12月06日 0 点赞 0 评论 585 浏览 评分:9.9
1051: [编程入门]结构体之成绩统计2 ```cpp#includeintn,i,sum1=0,sum2=0,sum3=0,temp=0,cout=0;structstudent{charid[100];charname[100];intscore[3];intTotalscore;}s[100];voidinput(inti){scanf 题解列表 2022年12月06日 0 点赞 0 评论 588 浏览 评分:9.9
1037: [编程入门]宏定义的练习 摘要:```cpp #include #define S(a,b) a%b int main() { int a,b; scanf("%d %d",&a,&b); printf("%d…… 题解列表 2022年12月06日 0 点赞 0 评论 810 浏览 评分:9.9
1038: [编程入门]宏定义练习之三角形面积 ```cpp#include#defineS(a,b,c)(a+b+c)/2#definearea(S,a,b,c)sqrt(S*(S-a)*(S-b)*(S-c))intmain(){doublea,b,c;scanf("%lf%lf%lf", 题解列表 2022年12月06日 0 点赞 0 评论 909 浏览 评分:9.9
1055: 二级C语言-进制转换 摘要:```cpp #include int main() { int n; scanf("%d",&n); printf("%o\n",n); return 0; } `…… 题解列表 2022年12月06日 0 点赞 0 评论 541 浏览 评分:9.9