1159: [偶数求和] 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[101]; int n,m; int b[101]; while(~scanf("%d %d",&…… 题解列表 2021年04月26日 0 点赞 0 评论 482 浏览 评分:0.0
仅仅17行代码(c语言) 摘要:#include int f(int a){ int sum =0; for(int i=1;i…… 题解列表 2021年04月28日 0 点赞 0 评论 530 浏览 评分:0.0
1771: [编程入门]链表之节点删除(C语言) 摘要:解题思路:首先,需要创建一个链表typedef struct student { int id; int chengji; struct student* next; }*node, N…… 题解列表 2021年04月28日 0 点赞 0 评论 841 浏览 评分:0.0
[1113] C语言考试练习题_保留字母 摘要:解题思路: 首先从键盘输入一段字符串 然后对字符串进行遍历 遍历的过程中进行判断,如果当先位置的字符是否属于a[i] >= 'a' && a[i] <= &#…… 题解列表 2021年04月29日 0 点赞 0 评论 416 浏览 评分:0.0
用最简单的C语言写出寻找矩阵最值 摘要:注意事项:1.要是用这个方法的话,注意max的赋值,如果在scanf前先将a[0][0]赋给max的话,会受到随机数的影响。 2.有没有大佬是用定义函数写的,我刚开始想用调用…… 题解列表 2021年04月30日 0 点赞 1 评论 494 浏览 评分:0.0
java的三位数分解 题解 摘要:解题思路:注意事项:参考代码:import java.util Scanner;public class Math{public static void mian(String[] args){ /…… 题解列表 2021年04月30日 0 点赞 0 评论 497 浏览 评分:0.0
蓝桥杯基础练习VIP-矩阵乘法 快速幂 摘要:解题思路:快速幂注意事项:参考代码:from functools import reduce#矩阵乘法def MatrixMul(MatrixA,MatrixB): tempMatrix =[ …… 题解列表 2021年04月30日 0 点赞 0 评论 458 浏览 评分:0.0
python 超简单写法 摘要:解题思路:注意事项:注意题目是求余数 python的/是除 %求余参考代码:a,b=map(int,input().strip().split())print(a%b)…… 题解列表 2021年05月01日 0 点赞 0 评论 627 浏览 评分:0.0
1025: [编程入门]数组插入处理(C语言) 摘要:#include <stdio.h>int main (){ int a[10]; //遍历输入 int i = 0; for (i=0;i<9;i++) { scanf("%d",&a[i])…… 题解列表 2021年05月02日 0 点赞 0 评论 448 浏览 评分:0.0
C语言的”利润计算“小题 摘要:解题思路: 其实就是一个简单的循环语句,我用了其中一种。注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,g; print…… 题解列表 2021年05月02日 0 点赞 0 评论 440 浏览 评分:0.0