题解列表
1034: [编程入门]自定义函数之数字分离-简单方法
摘要:解题思路:注意事项:注意使用-%2d(左对齐并间隔两格) 参考代码:#include<stdio.h>#include<math.h>int fun(int a){ int t = 0; for (……
矩阵乘法(C++)简单易懂
摘要:参考代码:#include <iostream>using namespace std;int main() { int n, m, k; cin >> n >> m >> k; i……
感谢支持,谢谢你们的支持
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[100];int main(){ int x; cin>>……
2840: 向量点积计算
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000],b[10000];int main(){ int ……
C语言训练-斐波纳契数列
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10000000];int main(){ int n; ……
1147: C语言训练-角谷猜想
摘要: #include
int number_ou(int a)//当为偶数时
{
printf("%d/2=%d\n",a,a/2);
return a/2;
}
i……