题解列表
编写题解 1052: [编程入门]链表合并
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct Student{ int a,b; struct Student*n……
最简答案 一个一维数组就搞定
摘要:解题思路:x/n+1 可以算出在哪一行x%n+1可以算出在哪一列注意事项:简单无脑,把最后输的行列搞明白就行参考代码:#include<stdio.h>int main(){ int arr[200]……
题解 2764: 带余除法
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a/b……
题解 1669: 求圆的面积
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include <iomanip>int main(){ double r; c……
2765: 计算分数的浮点数值
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b; cin>>a>>b; ……
编写题解 2760: 整型与布尔型的转换
摘要:解题思路:wu注意事项:wu参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; cout<<(……
2776: A*B问题
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; ……