题解 2808: 买房子

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<math.h>int main(){    int i,n,m;    float s1=0,s2=0;    scanf("%d %d",&n,&m)……

python 2808: 买房子

摘要:注意事项:第一年200万,从第二年开始循环计算。参考代码:N, K = map(int, input().split()) money = 200 amount = N year = 1 wh……

2808: 买房子

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai……

2808: 买房子

摘要:解题思路:注意事项:参考代码:n,k = map(int,input().split())year=0money=200k=k*0.01for i in range(1,22):   if i>20:……

2808: 买房子

摘要:解题思路:注意事项:参考代码:a = 200n,k = map(int,input().split())for i in range(1,22):    if i > 20:        print……

买房子C语言解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    double M;    int i,N,K,is=0;    scanf("%d %d",&N,&K);……

2808: 买房子题解:详细注释

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {     int annual_income, rate, year;    //annual_i……

题解 2808: 买房子

摘要:解题思路:注意事项:参考代码:# 输入年薪N和房价增长率K  n, k = map(int, input().strip().split())    # 初始化变量  a = n  # 程序员积攒的总……