Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
173670 周子隽 国债计算 C++ 无测评数据 0 0 MS 0 KB 1178 2024-08-20 23:27:53

Tests(0/0):


#include <stdio.h> #include <algorithm> #include <iostream> #include <string> using namespace std; string s, a, b;//输入字符串,乘数,被乘数 int n, l;//幂,小数点位置 //小数化为整数,并翻转数据 void init(){ l = s.find('.'); if (l >= 0) { s.erase(l, 1); l = (s.length() - l)*n; } reverse(s.begin(), s.end()); } //数据a,b相乘 void multiply(){ for (int i = 0; i < a.length(); ++i) for (int j = 0; j < b.length(); ++j){ s[i + j] += (a[i] - 48)*(b[j] - 48); s[i + j + 1] += s[i + j] / 10; s[i + j] %= 10; } for (int i = 0; i < s.length(); ++i)s[i] += '0'; } //控制幂次相乘 void calculate(){ a.assign(s); while (--n){ b.assign(s); s = string(a.length() + b.length(), 0); multiply(); } reverse(s.begin(), s.end()); } //格式输出 void printout(){ if (l >= 0) s.insert(s.length() - l, "."); int start = 0, end = s.length() - 1; while (s[start] == '0')++start; while (s[end] == '0')--end; s = s.substr(start, end - start + 1 - (s[end]=='.')); cout << s << endl; } int main(){ while (cin >> s >> n) { init(); calculate(); printout(); } return 0; }