摘要: 题目要求可以自行查看,我就记录一下我自己写的题吧 其实不是我自己的思路……还需努力啊,学习前辈的思考方式 代码如下: #include<stdio.h> #include<string.h> int main(){ char s[100]={0}; int count[100]={0};//计数单词 阅读全文
posted @ 2024-12-29 17:19 chaoxin 阅读(49) 评论(0) 推荐(0)
摘要: 也是第一次使用Markdown语法orz 定义结构体 struct student { char name[10]; char sex[5]; int age; int num; int score[5];//需要储存五门课的成绩 }; struct class { struct student s 阅读全文
posted @ 2024-12-24 18:23 chaoxin 阅读(243) 评论(0) 推荐(0)