题解 2938: 甲流病人初筛

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

筛选

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

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

甲流病人初筛

摘要:解题思路:注意事项:参考代码:#includestruct pepole{      char name[200];      float t;      char number;}a[200];in……

甲流病人初筛

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

甲流病人初筛C解

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