摘要: 实现用C语言在文件user.txt中输入几个用户的数据(包括姓名,年龄等) 代码如下 #include<stdio.h> int main(void){ FILE*file1; int age; char name[25]; char k; file1=fopen("user.txt","w"); 阅读全文
posted @ 2019-11-17 23:24 YBossy 阅读(2268) 评论(0) 推荐(0)