题解列表

筛选

题解 3003: 鸡兔同笼问题

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

题解 3003: 鸡兔同笼问题

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double a;    cin>>a;    pr……

题解 2767: 计算多项式的值

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a,b;    cin>>a>>b;    p……

链表c语言纯享版

摘要:```c #include #include #include // 定义链表节点结构体 typedef struct node { int data; ……

1075: 台球碰撞(python)

摘要:核心:边界碰撞之后如何计算——分开算,用两while循环代码:from math import * while True:     L, W, x, y, r, a, v, s = map(int……