help,哪里错了

法老王  •  2年前


include<bits/stdc++.h>

using namespace std; int main(){

float x,n;
cin>>x>>n;
while(n!=0)
{
	n--;
	x=x+x*0.001;
}
printf("%.4f",x);
return 1;

}


评论:

include<bits/stdc++.h>

using namespace std; int main() {

double x;
int n;
cin>>x>>n;
for(int i=1;i<=n;i++) x+=x/1000;
printf("%.4lf",x);
return 0;

}


杨中琦  •  2年前