编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&…… 题解列表 2022年05月24日 0 点赞 0 评论 294 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float c,f; scanf("%f",&f); c = 5*(f-32)/9; printf("c=…… 题解列表 2022年05月24日 0 点赞 0 评论 309 浏览 评分:0.0
编写题解 1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int A,B; scanf("%d%d",&A,&B); printf("%d",A*A + B*B); …… 题解列表 2022年05月24日 0 点赞 0 评论 299 浏览 评分:0.0
C语言训练-自由落体问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;double a,b=100,c=100;int main() { cin>>…… 题解列表 2022年05月24日 0 点赞 0 评论 388 浏览 评分:0.0
编写题解 1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float r,s; scanf("%f",&r); s = 3.1415927 * r * …… 题解列表 2022年05月24日 0 点赞 0 评论 468 浏览 评分:0.0
有大佬帮我看看咋个就运行超时了呢,答案是对的 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef struct Node{ int data; str…… 题解列表 2022年05月24日 0 点赞 1 评论 280 浏览 评分:0.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,s; scanf("%d%d",&a,&b); c = a*2 + b*2; s =…… 题解列表 2022年05月24日 0 点赞 0 评论 381 浏览 评分:0.0
编写题解 1006: [编程入门]三个数找最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d%d%d",&a,&b,&c); max = a; i…… 题解列表 2022年05月24日 0 点赞 0 评论 366 浏览 评分:0.0
好菜哦自己感觉倒来倒去没到明白 摘要:解题思路: File "Main.py", line 8 lis[k]\uff0clis[len(lis)-1]=lis[len(lis)-1]\uff0clis[k] …… 题解列表 2022年05月25日 0 点赞 0 评论 387 浏览 评分:0.0
写题记录,自定义部分数据 摘要:解题思路:注意事项:参考代码:a=[0,1,2,3,4] #将前面部分无法用通式表达的数手动定义,将索引0的赋值,便于后续列表的索引值与年数对应 b=[] #空列表用来储存…… 题解列表 2022年05月25日 0 点赞 0 评论 359 浏览 评分:0.0