题解列表
[编程入门]三个数最大值
摘要:解题思路:注意事项:参考代码: 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],……
编写题解 2791: 计算邮资
摘要:解题思路:先设定基本费用为8元,超重费用初始值为0元,总费用初始值为0元。如果重量不超过1000克,则总费用即为基本费用;如果超过1000克,则计算超重部分的费用,每500克加收4元,不足500克的部……
计算书费(C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,arr[10]; double ch[10]={28.9,32.7,45.6,78,35,86.……
思路清晰,配有三种解决方案,以及详细题解。
摘要:# 详情参考我的CSDN:
https://blog.csdn.net/weixin_43554580/article/details/130167554?csdn_share_tail=%7B%2……
java 逻辑运算符
摘要:解题思路:注意事项:注意逻辑运算符 || 和 && 的运用前者类似or,后作者类似and参考代码:import java.util.Scanner;public class Main { pub……
计算鞍点(c语言)新手发帖
摘要:解题思路:开始默认为最大值或最小值,循环if判断若不满足则提前退出。注意事项:无参考代码:#include<stdio.h>#include<string.h>int d[999][999];int ……