隨隨便便写一写,我尽量解释清楚这一题我为什么要这么写代码,这是我目前能想到的最详细的解读过程了
摘要:解题思路:第一年年底,房价200万,第一年一整年下来,他手头上有了N万;第二年年底,房价200*(1+K*0.01)万【从数学上来说,百分号K 可以等于K*0.01】,他今年工资一共N万,加上去年一整……
2808: 买房子 (中关村怎么可能有这么便宜的房子)
摘要:解题思路:注意事项:参考代码:#include <iostream>
// #include <sstream>
#include <cstdio>
// #include <algorithm……
题解 2808: 买房子
摘要:解题思路:注意事项:参考代码:# 输入年薪N和房价增长率K n, k = map(int, input().strip().split()) # 初始化变量 a = n # 程序员积攒的总……
买房子(第一年房子没涨价)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N, K,i=2; float money=200.0; scanf("%d %d", &N, &K);……
for and if买房子
摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main(){ double y=200; ……
买房子(用while时,小心时间超限)
摘要:参考代码:
```c
#include
int main()
{
int n,sum1;
double sum2=200,k;
scanf("%d%lf",&n,&k);
su……