P1002 (C++代码) 摘要:#include<iostream> #include<stdio.h> #include<cmath> #include<algorithm> #include<string> using…… 题解列表 2018年08月23日 0 点赞 0 评论 500 浏览 评分:0.0
P1002(结构体) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>#include<set>#include<string>#inc…… 题解列表 2022年02月09日 0 点赞 0 评论 113 浏览 评分:0.0
P1002 (C语言代码) 摘要:#include<stdio.h>typedef struct n{ char name[21]; int score; int grade; char c1; char…… 题解列表 2018年03月26日 0 点赞 0 评论 724 浏览 评分:0.0
P1002-题解(C++代码) 摘要:```cpp #include using namespace std; typedef struct Stu{ char name[20]; int qimo; …… 题解列表 2020年03月12日 0 点赞 0 评论 340 浏览 评分:0.0
P1002 (C语言代码) 摘要:题目链接:http://www.dotcpp.com/oj/problem1269.html 解题思路:简单的方法就是利用结构体,创建一个结构体数组,对其中的成员进行操作,然后比较即可注意事项:对于数…… 题解列表 2018年07月02日 0 点赞 0 评论 533 浏览 评分:0.0
P1002 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct student{ char name[1…… 题解列表 2019年04月04日 0 点赞 0 评论 514 浏览 评分:0.0
P1002-题解(C语言代码) 摘要:这一题难度不大,选择一个结构体数组,将学生的所有信息囊括就行,同时设置变量 money 表示学生获得的奖学金数额,allmoney 用于统计所有的奖学金数额。为了满足题目的条件:“如果有两位或两位以上…… 题解列表 2020年10月08日 0 点赞 0 评论 383 浏览 评分:0.0
P1002 (C语言代码)——利用结构体 摘要:解题思路:1)要一次输入多个值,利用结构体比较方便2)对于奖学金的评定,有一些关于分数的要求,比较时可以自己为他们排一下序,比如如果不大于80,就不用可虑大于90了,所以把大于90的奖学金放在大于80…… 题解列表 2018年08月18日 0 点赞 0 评论 562 浏览 评分:0.0
P1002 (C语言代码) 摘要://奖学金.c #include <stdio.h> struct student { char name[21]; int lmark; int clmark; …… 题解列表 2017年11月24日 0 点赞 0 评论 1099 浏览 评分:0.0