当前位置:网站首页>PTA 1101 B是A的多少倍

PTA 1101 B是A的多少倍

2022-07-07 16:49:00 邓某人的父亲

1101 B是A的多少倍

#include <iostream>
using namespace std;
int main()
{
    
	string A;
	int D;
	cin>>A>>D;
	long long int a=stoi(A);
	string B;
	for(int i=A.length()-D;i<A.length();i++)
		B=B+A[i];
	for(int i=0;i<A.length()-D;i++)
		B=B+A[i];
	B=B+'\0';
	
	long long int b= stoi(B);
	double c=b*1.0/a;
	printf("%.2f",c);
}
原网站

版权声明
本文为[邓某人的父亲]所创,转载请带上原文链接,感谢
https://blog.csdn.net/m0_62121252/article/details/125637068