白泽 • 11个月前
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;
}
评论:
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;
}
请先登录,才能进行评论