蓝桥杯基础练习VIP-报时助手(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>//二十以内的数字;char arr[25][20]={"zero","one","two","…… 题解列表 2023年04月16日 1 点赞 0 评论 312 浏览 评分:10.0
蓝桥杯2023年第十四届省赛真题-冶炼金属 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n, v[100000][3] = { 0 }, m = 10000000, k; scanf("%d…… 题解列表 2023年04月16日 0 点赞 0 评论 1581 浏览 评分:9.0
规律就是x要么为奇数要么为4的倍数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int count=0;void Isnumer(int a){ if(a%4==0 || a%2!=0) { count++…… 题解列表 2023年04月16日 0 点赞 1 评论 2669 浏览 评分:9.2
1048: [编程入门]自定义函数之字符串拷贝——两个数组解题法 摘要:解题思路:创造两个字符数组a和b,把输入的字符串存到a里,要拷贝的的字符存到b里注意事项:①不要忘了#include <string.h> ②i的值要等于m减一,不然会少一个…… 题解列表 2023年04月16日 0 点赞 0 评论 297 浏览 评分:0.0
Java简洁方法 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年04月16日 0 点赞 0 评论 479 浏览 评分:9.9
[编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码: public static void main(String[] args) { Scanner sc= new Scanner(System.in); int [] …… 题解列表 2023年04月16日 0 点赞 0 评论 297 浏览 评分:0.0
给用Java的开一下荒土 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2023年04月16日 0 点赞 0 评论 363 浏览 评分:0.0
蓝桥杯算法提高VIP-删除数组中的0元素(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int CompactIntegers(int *arr,int n){ for (int…… 题解列表 2023年04月16日 0 点赞 0 评论 501 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <ctype.h>#define maxn 100char s1[maxn],…… 题解列表 2023年04月16日 0 点赞 0 评论 196 浏览 评分:0.0
编写题解 2791: 计算邮资 摘要:解题思路:先设定基本费用为8元,超重费用初始值为0元,总费用初始值为0元。如果重量不超过1000克,则总费用即为基本费用;如果超过1000克,则计算超重部分的费用,每500克加收4元,不足500克的部…… 题解列表 2023年04月16日 0 点赞 0 评论 589 浏览 评分:9.9