Problem A: 银行存款
[Creator : ]
Description
提示:
收益率 = (到期金额-初始金额)/存款本金*100%。
注意类型转换。
使用printf 输出 % ,需要写成 %%
#include<cstdio>
using namespace std;
int main() {
int a, b;
scanf("_________", __________);
printf("_________", ___________________);
return 0;
}
Sample Input Copy
100 105
Sample Output Copy
5.00%