题解列表
蓝桥杯基础练习VIP-报时助手(C语言)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>//二十以内的数字;char arr[25][20]={"zero","one","two","……
蓝桥杯2023年第十四届省赛真题-冶炼金属
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n, v[100000][3] = { 0 }, m = 10000000, k; scanf("%d……
规律就是x要么为奇数要么为4的倍数
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int count=0;void Isnumer(int a){ if(a%4==0 || a%2!=0) { count++……
1048: [编程入门]自定义函数之字符串拷贝——两个数组解题法
摘要:解题思路:创造两个字符数组a和b,把输入的字符串存到a里,要拷贝的的字符存到b里注意事项:①不要忘了#include <string.h> ②i的值要等于m减一,不然会少一个……
[编程入门]三个数最大值
摘要:解题思路:注意事项:参考代码: public static void main(String[] args) { Scanner sc= new Scanner(System.in); int [] ……
给用Java的开一下荒土
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class Main {
public static void main(String[] a……
蓝桥杯算法提高VIP-删除数组中的0元素(C语言)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int CompactIntegers(int *arr,int n){ for (int……
蓝桥杯基础练习VIP-字符串对比 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <ctype.h>#define maxn 100char s1[maxn],……