摘要:
//求平均数 阅读全文
摘要:
/* X轴上方为陆地下方为水水每年让陆地收缩50平方英里输入第一行为数据组数其余为X,Y坐标判断水多少年能冲击到座标上*/ #include<iostream>#include<math.h>using namespace std;#define PL 3.1415926 int main(){ d 阅读全文
摘要:
#include<iostream> using namespace std;int main(){ double n,s; int i; while(cin>>n&&n<5.20&&n>0.01) { s=0,i=1; //注意不要再这定义S,I否则只初始化一次 while(s<n) { s+=1 阅读全文