题解列表

筛选

C++简单解法

摘要:解题思路:属于基础题目注意事项:参考代码:#include<iostream>using namespace std;int main(void){ c……

C++简单解法

摘要:解题思路:属于基础题目,重要的是知道求绝对值的函数fabs及如何控制小数点后的位数注意事项:参考代码:#include<iostream>#include<cmath>#inc……

C++简单解法

摘要:解题思路:属于基础题目注意事项:参考代码:一般做法#include<iostream>using namespace std;int main(void……

你的名字yes

摘要:#includeint main(void){ int i; int high[10]; for(i=0;i……

猴子吃桃的问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int y=1,i=1;//y为最后一天的桃子数 int n; scanf("……