P1002(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct Student { char name[20]; // 姓名 int final_grad…… 题解列表 2021年04月19日 0 点赞 0 评论 469 浏览 评分:9.9
P1002-题解(C语言代码)满分代码(含解题思路)!! 摘要:####题目: 题目描述 某校的惯例是在每学期的期末考试之后发放奖学金。发放的奖学金共有五种,获取的条件各自不同: 1) 院士奖学金,每人8000元,期末平均成绩高于80分(> …… 题解列表 2019年12月04日 0 点赞 0 评论 527 浏览 评分:9.9
P1002-题解(C语言代码)满分代码(含解题思路)!! 摘要: #include #include typedef struct stu { char name[200]; int final;…… 题解列表 2019年12月06日 0 点赞 0 评论 551 浏览 评分:9.9
P1002 (C++代码) 摘要:解题思路: 这种类型题目做得很多了,用结构体保存数据,按要求求出奖金,然后按要求排序即可。参考代码:#include <bits/stdc++.h> using namespace std; …… 题解列表 2019年02月18日 1 点赞 0 评论 618 浏览 评分:8.5
P1002 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>struct student{ char name[20]; int score1,score2…… 题解列表 2017年08月30日 3 点赞 0 评论 1143 浏览 评分:8.0
P1002 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#define true 1#define false 0typedef int Bool;ty…… 题解列表 2019年03月24日 1 点赞 0 评论 790 浏览 评分:8.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语言代码) 摘要:解题思路: 用循环和数组即可注意事项:参考代码:#include <stdio.h>int main() { int n; scanf("%d", &n); int i, a[n],…… 题解列表 2018年08月04日 0 点赞 0 评论 653 浏览 评分:0.0
P1002-题解(C语言代码) 摘要: #include int main(void) { struct STU { char name[32]; int x…… 题解列表 2020年03月03日 0 点赞 0 评论 217 浏览 评分:0.0
P1002 -_-!!! 摘要:#include<stdio.h> #include"string.h" int func(int a[],int n,int *s); struct info { char nam…… 题解列表 2018年11月26日 1 点赞 0 评论 622 浏览 评分:0.0