想变成功夫熊猫的胖虎
想变成功夫熊猫的胖虎
全部文章
题解
归档
标签
去牛客网
登录
/
注册
想变成功夫熊猫的胖虎的博客
全部文章
/ 题解
(共12篇)
题解 | #查找组成一个偶数最接近的两个素数#
#include #include #include int func(int n)//判断一个数是不是素数 { for(int i=2;i<n;i++) { if(n%i==0) { return 0; ...
C
数组
2021-09-16
0
430
题解 | #矩阵乘法#
#include<stdio.h> #include<stdlib.h> #include<math.h> int main() { int arow,arol,brow,bcol; while(scanf("%d",&...
C
2021-09-16
5
855
首页
上一页
1
2
下一页
末页