买房子(第一年房子没涨价) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N, K,i=2; float money=200.0; scanf("%d %d", &N, &K);…… 题解列表 2023年11月19日 0 点赞 0 评论 199 浏览 评分:0.0
题解 1001: [编程入门]第一个HelloWorld程序 摘要:解题思路:注意事项:别忘记用endl换行和少打*!参考代码: #include <bits/stdc++.h>//万能头文件 using namespace std;int mai…… 题解列表 2023年11月19日 0 点赞 0 评论 146 浏览 评分:0.0
C语言,结构数组 摘要:解题思路:呃,懒得写了参考代码:#include <stdio.h>typedef struct student{ char number[10]; char name[10]; c…… 题解列表 2023年11月19日 0 点赞 0 评论 178 浏览 评分:0.0
[编程入门]二维数组的转置(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],i,j,t; for(i=0;i<3;i++){ for(j=…… 题解列表 2023年11月19日 0 点赞 0 评论 177 浏览 评分:0.0
救援(总时间) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,x,y,num; double distance; double t…… 题解列表 2023年11月19日 1 点赞 0 评论 141 浏览 评分: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 评论 218 浏览 评分:0.0
1151的题解c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,b=1; cin>>n; fo…… 题解列表 2023年11月19日 0 点赞 0 评论 126 浏览 评分:0.0
题解 1141: C语言训练-百钱百鸡问题 摘要: #include using namespace std; int main(){ int x,y,z; for(x=0;x…… 题解列表 2023年11月19日 0 点赞 0 评论 155 浏览 评分:0.0
解 3015: 幂的末尾 摘要: #include using namespace std; int main(){ int a,b,c,d; for(int i=100;i…… 题解列表 2023年11月19日 0 点赞 0 评论 162 浏览 评分:0.0
2096: 打印平行四边形 摘要:``` #include using namespace std; int main(){ int n; cin>>n; for( int i=1;i…… 题解列表 2023年11月19日 0 点赞 0 评论 106 浏览 评分:0.0