优质题解 编写题解 1120: C语言训练-"水仙花数"问题2 摘要:解题思路: 1、创建4个int类型的变量,分别是:g(个位上的数),s(十位上的数),b(百位上的数),h(和) 2、循环开始是100(最小的三位数),到999(最大的三位数) …… 题解列表 2023年07月13日 0 点赞 0 评论 955 浏览 评分:7.6
C语言训练-百钱百鸡问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<"cock=0,hen=25,chick…… 题解列表 2023年07月13日 0 点赞 0 评论 174 浏览 评分:9.9
鸡你太美问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>int main() {printf("cock=0,hen=25,chicken=75\ncock=4,hen=18,c…… 题解列表 2023年07月13日 0 点赞 0 评论 343 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<"cock=0,hen=25,chicken=75"<…… 题解列表 2023年07月13日 0 点赞 0 评论 294 浏览 评分:0.0
题解 2831: 画矩形 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,d; char c; c…… 题解列表 2023年07月13日 0 点赞 0 评论 195 浏览 评分:9.9
余数相同问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年07月13日 0 点赞 0 评论 171 浏览 评分:0.0
画矩形行行 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,k; char c; c…… 题解列表 2023年07月13日 0 点赞 0 评论 161 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,d,j,i; char c; ci…… 题解列表 2023年07月13日 0 点赞 0 评论 220 浏览 评分:9.9
1018: [编程入门]有规律的数列求和(python) 摘要: n=int(input()) sum=0.0 a=1.0 b=1.0 k=0.0 for i in range(1,n+1): k=b b = a + b a …… 题解列表 2023年07月13日 0 点赞 0 评论 285 浏览 评分:0.0
比较数的大小 摘要:解题思路:注意事项:数据的范围参考代码:#include <stdio.h>int main(){ unsigned a; int b; scanf("%u %d",&a,&b); …… 题解列表 2023年07月13日 0 点赞 0 评论 207 浏览 评分:0.0