题解 2938: 甲流病人初筛

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最简单易懂的解法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int n,m[200];    float t[200];    char c[100][100]; ……

用函数来完成甲流病人初筛

摘要:解题思路:先定义用于筛选的函数体,再在主函数中进行调用注意事项:函数体中,数值是不能够直接进行传递的,如果想传递到主函数中,要用指针参考代码:#include <stdio.h>      voi……

甲流病人初筛C解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,count=0,i;    scanf("%d",&n);    char s[200][20……

甲流病人初筛(c++)

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <vector>using namespace std;struct Patient {    string na……

甲流病人初筛

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;//题目2938public class 甲流病人初筛 {    public static void main(Str……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct patient{    char name[9];    float temperat……