2808: 买房子题解:详细注释 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int annual_income, rate, year; //annual_i…… 题解列表 2024年12月20日 0 点赞 0 评论 171 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<math.h>int main(){ int i,n,m; float s1=0,s2=0; scanf("%d %d",&n,&m)…… 题解列表 2024年11月26日 0 点赞 0 评论 106 浏览 评分:0.0
隨隨便便写一写,我尽量解释清楚这一题我为什么要这么写代码,这是我目前能想到的最详细的解读过程了 摘要:解题思路:第一年年底,房价200万,第一年一整年下来,他手头上有了N万;第二年年底,房价200*(1+K*0.01)万【从数学上来说,百分号K 可以等于K*0.01】,他今年工资一共N万,加上去年一整…… 题解列表 2024年11月05日 0 点赞 0 评论 94 浏览 评分:0.0
题解 2808: 买房子 摘要:解题思路:注意事项:参考代码:# 输入年薪N和房价增长率K n, k = map(int, input().strip().split()) # 初始化变量 a = n # 程序员积攒的总…… 题解列表 2024年07月30日 0 点赞 0 评论 145 浏览 评分:0.0
python 2808: 买房子 摘要:注意事项:第一年200万,从第二年开始循环计算。参考代码:N, K = map(int, input().split()) money = 200 amount = N year = 1 wh…… 题解列表 2024年03月13日 0 点赞 0 评论 136 浏览 评分:0.0
买房子C语言解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double M; int i,N,K,is=0; scanf("%d %d",&N,&K);…… 题解列表 2024年02月18日 0 点赞 0 评论 164 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月13日 0 点赞 0 评论 148 浏览 评分:9.9
编写题解 2808: 买房子 摘要:解题思路:注意事项:参考代码:N, K = map(int, input().split()) money = N price = 200 for i in range(2, 23): …… 题解列表 2023年12月19日 0 点赞 1 评论 219 浏览 评分:7.3
for and if买房子 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main(){ double y=200; …… 题解列表 2023年12月17日 0 点赞 0 评论 116 浏览 评分:0.0
2808: 买房子 摘要:解题思路:注意事项:参考代码:n,k = map(int,input().split())year=0money=200k=k*0.01for i in range(1,22): if i>20:…… 题解列表 2023年11月19日 0 点赞 0 评论 124 浏览 评分:0.0