题解 1954: 话费计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int base = 50; double min; scanf("%lf…… 题解列表 2022年03月02日 0 点赞 0 评论 376 浏览 评分:0.0
C语言,不用库函数,标注较为清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]={0},i,b,d,c;//a[] 里要定义一下 元素个数,否则,可能会有 数据丢失 for…… 题解列表 2022年03月02日 0 点赞 0 评论 260 浏览 评分:0.0
2281: 蓝桥杯2018年第九届真题-次数差 暴力 好理解 摘要: import java.util.HashMap; import java.util.Scanner; public class _2281_蓝桥杯2018…… 题解列表 2022年03月02日 0 点赞 0 评论 507 浏览 评分:9.9
编写题解 1025: [编程入门]数组插入处理 摘要:稍微把别人的改了一点点参考代码:l = list(map(int,input().split()))l.append(int(input(a)))l[len(l)-1] = int(l[len(l)-…… 题解列表 2022年03月02日 0 点赞 0 评论 407 浏览 评分:0.0
2097: 单词得分 摘要: #include #include int main() { int i,l,num=0; char a[100001]; //a[100000]就报错无语了 g…… 题解列表 2022年03月02日 0 点赞 0 评论 476 浏览 评分:9.9
二级C语言--公约公倍 摘要:解题思路:注意事项:参考代码:要注意输入的方式:即是一次输入俩个数据,还是一次输入一个数据,分俩次输入b=list(map(int,input().split()))if len(b)<2: q=…… 题解列表 2022年03月02日 0 点赞 0 评论 763 浏览 评分:9.9
C语言,标注较为清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,x,x1;//使用double 否则可能会使数据流失 …… 题解列表 2022年03月02日 0 点赞 0 评论 249 浏览 评分:0.0
冒泡排序哦 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void b_sort(int a[]){ int i,j,t; for(i=0;i<2;i++){ for(j=0…… 题解列表 2022年03月02日 0 点赞 0 评论 453 浏览 评分:0.0
2089: 蓝桥杯算法提高VIP-不大的数(C语言版) 摘要: #include #include int main() { double ans = 1; int n; scanf("%d",&n); if (n =…… 题解列表 2022年03月02日 0 点赞 0 评论 499 浏览 评分:9.9
C语言最简单!!没有之一 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("W"); return 0;}…… 题解列表 2022年03月02日 0 点赞 0 评论 486 浏览 评分:0.0