[编程入门]Sn的公式求和 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main(void){ int n; cin>>n; int Sn=0; …… 题解列表 2022年12月09日 0 点赞 0 评论 440 浏览 评分:9.3
三目运算整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); if(a==b) print…… 题解列表 2022年12月12日 0 点赞 0 评论 756 浏览 评分:9.3
甲流病人初筛 摘要:解题思路:注意事项:参考代码:#includestruct pepole{ char name[200]; float t; char number;}a[200];in…… 题解列表 2022年12月31日 0 点赞 3 评论 635 浏览 评分:9.3
蛇形矩阵C语言 摘要:解题思路:计算出矩阵中最大值为多少,然后再计算矩阵各个值。注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n][…… 题解列表 2023年01月05日 0 点赞 2 评论 349 浏览 评分:9.3
2766: 甲流疫情死亡率 摘要:```cpp #include #include using namespace std; int main() { int a,b; cin>>a>>b; c…… 题解列表 2023年01月10日 0 点赞 0 评论 806 浏览 评分:9.3
1761: 学习ASCII码 摘要:只要进行int和char之间的的转换就行了 ```cpp #include using namespace std; int main() { cout…… 题解列表 2023年01月12日 1 点赞 0 评论 1351 浏览 评分:9.3
1003密码破译 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char arr[20]={0};//定义一个随机长度的字符串数组 sc…… 题解列表 2023年01月29日 0 点赞 2 评论 334 浏览 评分:9.3
李白打酒加强版 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,m,dp[210][110][110]; ci…… 题解列表 2023年01月31日 0 点赞 0 评论 644 浏览 评分:9.3
1955: 贷款计算 摘要:```cpp #include using namespace std; int main() { int total,month,money; float rate; …… 题解列表 2023年02月01日 0 点赞 0 评论 597 浏览 评分:9.3
短路运算代替判断语句 摘要:解题思路:利用逻辑运算进行短路运算注意事项:考虑逻辑运算表参考代码:#include <stdio.h>int main() { int n; scanf("%d",&n); n%3…… 题解列表 2023年02月15日 0 点赞 0 评论 1140 浏览 评分:9.3