题解列表

筛选

(java语言)计算平均值

摘要:解题思路:注意事项:参考代码:package LiXiTiXh;import java.util.Scanner;public class A1053 {     public static void……

1509: 蓝桥杯算法提高VIP-图形输出

摘要:解题思路:既然是算法提高题,就不想用暴力法解决注意事项:参考代码:#include<stdio.h>char ch; //内容char sep=&#39;|&#39;; //分隔符int layer……

1532: 蓝桥杯算法提高VIP-数组输出

摘要:解题思路:一边输入一遍比较注意事项: 憨批题目的下标输出时要+1参考代码:#include <stdio.h>#include <math.h>#define ROW 3#define COL 4in……

1093: 字符逆序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define CHANGE(a,b) t=a,a=b,b=t #define LEN 100 //最大长度 int main() {……