AC

白泽  •  9个月前


include <bits/stdc++.h>

using namespace std; int main() {

long double a,b=1.1,c=1,d=1;
cin>>a;
for(;c<=a;c++)
{
	d=d*b;
}
cout<<setprecision(2)<<fixed<<d;
return 0;

}


评论:

include <bits/stdc++.h>

using namespace std; int main() {

long double a,b=1.1,c=1,d=1;
cin>>a;
for(;c<=a;c++)
{
	d=d*b;
}
cout<<setprecision(2)<<fixed<<d;
return 0;

}


白泽  •  9个月前

请先登录,才能进行评论