2004: 统计成绩 摘要:#include<bits/stdc++.h> using namespace std; int main(){ double sum(0); int x,fail(0);…… 题解列表 2021年12月26日 0 点赞 0 评论 312 浏览 评分:0.0
1749: 字符排序 摘要:#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; getchar…… 题解列表 2021年12月26日 0 点赞 0 评论 366 浏览 评分:0.0
统计字母个数(Java代码) 摘要:参考代码:import java.util.Scanner; public class 统计字母个数 { public static void main(String[] args) {…… 题解列表 2021年12月26日 0 点赞 0 评论 472 浏览 评分:8.0
2002: 计算数字个数 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); …… 题解列表 2021年12月26日 0 点赞 0 评论 297 浏览 评分:0.0
编写题解 1232: 查找最大元素 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<cstring> using namespace std; int ma…… 题解列表 2021年12月26日 0 点赞 0 评论 284 浏览 评分:0.0
C语言简单算法:简单的a+b 摘要:解题思路:寻常加法+一个循环注意事项:需要输出多组数据参考代码:#include<stdio.h>int main(){ int a,b,c; while (scanf("%d%d",&a…… 题解列表 2021年12月26日 0 点赞 0 评论 400 浏览 评分:0.0
【C语言】新手解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d",a>b?(a>…… 题解列表 2021年12月26日 0 点赞 0 评论 357 浏览 评分:0.0
委派任务C语言题解 摘要:解题思路: 6个人每个人有去和不去两种情况,所以我将它所有情况列举出来就是26种,再将26次方转换为二进制数每一位存入数组,就得到例如 1 1 1 1 1 1 这样的数组,我们用1来代替去的情况…… 题解列表 2021年12月26日 0 点赞 0 评论 770 浏览 评分:0.0
1771: [编程入门]链表之节点删除 摘要:#include<bits/stdc++.h> using namespace std; struct node{//定义链表结点,头结点 xuehao 变量保存链表结点数 int…… 题解列表 2021年12月26日 0 点赞 0 评论 354 浏览 评分:0.0
【C语言】新手解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c; int zimu=0,kong=0,shu=0,qita=0; while((c=getchar…… 题解列表 2021年12月25日 0 点赞 0 评论 354 浏览 评分:0.0