题解列表

筛选

石头剪刀布

摘要:解题思路:小A和小B的出拳是有周期性的。i % A 和 i % B 的作用是计算当前轮次 i 所对应的出拳规律的位置。当i达到或超过 A 或 B 时,取余操作会使其回到0。例如:如果 i 为 3,而 ……

C语言训练-阶乘和数*

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int N = 10; int a[N]; int main() {……

1157: 亲和数(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin >> n; while(……

1159: 偶数求和

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n, m; while(cin >> n ……

题解 2773: 计算线段长度 math.h头文件

摘要:??解题思路??此题中两点之间存在四种情况:1.两点 X坐标 相同表示为: Xa == Xb解:两点 Y坐标 差值的 绝对值2.两点 Y坐标 相同表示为: Ya == Yb解:两点 X坐标 差值的 绝……

指针/引用练习之交换数字

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int swap(int *a,int *b){ int  temp; temp=*a; *a=*b; *b=temp; return ……

判断一年的第几天

摘要:参考代码:#include<stdio.h>struct date {    int year;    int month;    int day;};int main() {    struct d……

1160: 出圈 (vector , 公式法)

摘要:解题思路:Vector注意事项:删除元素的位置在末尾的时候,需要注意初始化为0参考代码:#include#include  using namespace std; int main() { ……