1113: C语言考试练习题_保留字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char a[100]; gets(a); …… 题解列表 2021年09月17日 0 点赞 0 评论 345 浏览 评分:0.0
Ikaros-1669:求圆的面积 Python解决 摘要:解题思路: 直接干就行注意事项:不能使用**,不然会出错(评判的时候)参考代码:r = float(input())pi = 3.1415926S = pi * r * rprint(round…… 题解列表 2021年09月18日 0 点赞 0 评论 483 浏览 评分:0.0
Ikaros-1952: 求长方形面积 Python解决 摘要:解题思路:使用format、map函数参考代码:number = list(map(int,input().split()))C = int((number[0] + number[1]) * 2)S…… 题解列表 2021年09月18日 0 点赞 0 评论 674 浏览 评分:0.0
Ikaros-1954:话费计算 摘要:解题思路:简单的乘一下再加上保留1位数即可参考代码:number = int(input())print(round(50 + number * 0.4,1))…… 题解列表 2021年09月18日 0 点赞 0 评论 356 浏览 评分:0.0
数组输入输出(V) 摘要:解题思路:数组必须有长度 注意需不需要初始化注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string…… 题解列表 2021年09月19日 0 点赞 0 评论 389 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意字符串结束符注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <string.h> int main() {…… 题解列表 2021年09月19日 0 点赞 0 评论 538 浏览 评分:0.0
题解 1017: [编程入门]完数的判断 摘要:解题思路:用for循环遍历N以内的所有数字,用一个函数来判断是否是完数。参考代码:#include<stdio.h> #include<string.h> #define max 1005 in…… 题解列表 2021年09月20日 0 点赞 0 评论 496 浏览 评分:0.0
蓝桥杯2019年第十届省赛真题-外卖店优先级 摘要:##### 思路:把每个时间中所有的订单插入到以当前时间为头节点的链表中,然后按时间顺序进行遍历每个链表进行处理 ``` #include using namespace std; cons…… 题解列表 2021年09月20日 0 点赞 0 评论 549 浏览 评分:0.0
1128: C语言训练-排序问题<1> 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #define N 4 void bubblesort(int a[],int n);…… 题解列表 2021年09月21日 0 点赞 0 评论 719 浏览 评分:0.0
。。。。。。。。。。。。。。。。。。。。。。。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[100],j,i,h=0,m=0,s=0; scanf("%d",&n); for(i=0;i<…… 题解列表 2021年09月21日 0 点赞 0 评论 395 浏览 评分:0.0