编写题解 1637: 蓝桥杯算法训练VIP-斜率计算 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Text { public static void main(Strin…… 题解列表 2021年03月19日 0 点赞 0 评论 230 浏览 评分:9.9
回文数字,用好函数,一个函数里可以有两个判断语句 摘要:解题思路:用好函数,一个函数里可以有两个判断语句 注意事项:参考代码:#include<stdio.h>#include<math.h>bool rever(int a,int length,int …… 题解列表 2021年03月19日 0 点赞 1 评论 183 浏览 评分:2.0
[编程入门]结构体之时间设计(C语言代码)简单易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct date{ int year; int month; int day;};int Nowday(str…… 题解列表 2021年03月19日 0 点赞 0 评论 241 浏览 评分:0.0
编写题解 1634: 蓝桥杯算法训练VIP-数组查找及替换 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList; import java.util.Collection; import java.util.Collectio…… 题解列表 2021年03月19日 0 点赞 0 评论 186 浏览 评分:9.9
企业奖金发放超简单C语言代码 摘要:#include<cstdio> const int c=100000; int main(){ double n,j; scanf("%lf",&n); if(n<…… 题解列表 2021年03月19日 0 点赞 0 评论 576 浏览 评分:9.9
自定义函数处理最大公约数与最小公倍数(C语言) 摘要:解题思路:注意事项:参考代码: #include int gcd(int a,int b){ if(b==0) return a; else return gcd(b,a%b);…… 题解列表 2021年03月19日 0 点赞 0 评论 337 浏览 评分:6.0
蓝桥杯算法提高VIP-最长公共子序列 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 最长公共子序列 { /** * @param args */…… 题解列表 2021年03月19日 0 点赞 0 评论 386 浏览 评分:9.9
数字逆序输出 摘要:解题思路:注意事项:参考代码:#include int main(){ int a[10],i; for(i=0;i<10;i++){ scanf("%d",&a[i]); } for(i…… 题解列表 2021年03月19日 0 点赞 0 评论 583 浏览 评分:9.9
Hello, world!最简单C语言代码 摘要:解题思路:注意事项:这里我直接申请了一个全局变量的数组,如此做可以扩大数组可存储数量的上限;同时由于字符存储在计算机中就是以ASCII码形式,因此可以直接以%c格式输出存储在该数组的输入数据。//参考…… 题解列表 2021年03月19日 0 点赞 0 评论 341 浏览 评分:6.0
1537: 蓝桥杯算法提高VIP-栅格打印问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int h, w; scanf("%d %d", &h, &w); if(h <=0 || …… 题解列表 2021年03月19日 0 点赞 0 评论 405 浏览 评分:0.0