甲流病人初筛,结构体数组写法,有注释 摘要:```c ```c #include typedef struct information{ char name[8]; float temperature; int cough…… 题解列表 2024年03月12日 0 点赞 0 评论 295 浏览 评分:0.0
用函数来完成甲流病人初筛 摘要:解题思路:先定义用于筛选的函数体,再在主函数中进行调用注意事项:函数体中,数值是不能够直接进行传递的,如果想传递到主函数中,要用指针参考代码:#include <stdio.h> voi…… 题解列表 2024年10月27日 0 点赞 0 评论 123 浏览 评分:9.9
最简单易懂的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,m[200]; float t[200]; char c[100][100]; …… 题解列表 2024年12月09日 0 点赞 0 评论 87 浏览 评分:0.0