甲流病人初筛(C++) 摘要: #include #include using namespace std; struct doctor{ string name; …… 题解列表 2023年03月03日 0 点赞 0 评论 279 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct patient{ char name[9]; float temperat…… 题解列表 2023年06月13日 0 点赞 0 评论 265 浏览 评分:0.0
甲流病人初筛(c++) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <vector>using namespace std;struct Patient { string na…… 题解列表 2023年09月23日 0 点赞 0 评论 245 浏览 评分:0.0
甲流病人初筛C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,count=0,i; scanf("%d",&n); char s[200][20…… 题解列表 2024年02月27日 0 点赞 0 评论 230 浏览 评分:0.0
甲流病人初筛,结构体数组写法,有注释 摘要:```c ```c #include typedef struct information{ char name[8]; float temperature; int cough…… 题解列表 2024年03月12日 0 点赞 0 评论 371 浏览 评分:0.0
最简单易懂的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,m[200]; float t[200]; char c[100][100]; …… 题解列表 2024年12月09日 0 点赞 0 评论 155 浏览 评分:0.0
甲流病人初筛 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;//题目2938public class 甲流病人初筛 { public static void main(Str…… 题解列表 2023年09月02日 0 点赞 0 评论 252 浏览 评分:9.0
甲流病人初筛 摘要:解题思路:注意事项:参考代码:#includestruct pepole{ char name[200]; float t; char number;}a[200];in…… 题解列表 2022年12月31日 0 点赞 3 评论 422 浏览 评分:9.3
甲流病人初筛(c语言尾插法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> struct book { char name[9]; float tw; i…… 题解列表 2022年12月23日 0 点赞 0 评论 652 浏览 评分:9.9
甲流病人初筛(结构体做法、C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct person{ char name[10]; float temperat…… 题解列表 2023年02月01日 0 点赞 0 评论 495 浏览 评分:9.9