会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
yianhaha
博客园
首页
新随笔
联系
订阅
管理
2024年12月29日
PTA7-26 单词长度
摘要: 题目要求可以自行查看,我就记录一下我自己写的题吧 其实不是我自己的思路……还需努力啊,学习前辈的思考方式 代码如下: #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)
2024年12月24日
C语言学生管理系统|结构体数组+文件操作+按照姓名排序
摘要: 也是第一次使用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)
公告