题解列表
C语言训练-自由落体问题(比较简单)
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
int n……
计算宇宙无敌超级大数
摘要:解题思路:高精度乘法学过吧注意事项:数字特大,10000位数组储存参考代码:#includeusing namespace std;
int main(){
int num[100000]……
请指正,提交后显示第一个答案不正确
摘要:解题思路:注意事项:参考代码:#include <stdio.h>void f(char a[100]){ int x = 0, y = 0, z = 0, e = 0; for (int……
C语言训练-计算1~N之间所有奇数之和
摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(int argc, char** argv) { int n,a; cin>>n; ……
明明的随机数-一个萝卜一个坑
摘要:#include
#include
int main()
{
int N = 0 , m = 0 , num = 0 , k = 0 ;
int arr[1001] = ……
2886: 图像旋转 简单c++
摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h>
int a[100][100];
int b[100][100];
using namespace std;
……
2880: 计算鞍点简单c++
摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h>
int a[100][100];
using namespace std;
int main()
{
……