题解列表

筛选

综合求和练习简单解法

摘要:解题思路:注意事项:注意小数运算的精度问题参考代码:#include<stdio.h>int main(){ int a,b,c,i,t,r,q,w; double p,e; scanf(……

鸡兔同笼c++

摘要:方法1#include <iostream>using namespace std;int main() { int a, b, x, y; cin >> x >>……