会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lwh442
博客园
首页
新随笔
联系
订阅
管理
2023年6月14日
实验7 文件应用编程
摘要: 4:实验任务4 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { int i; i = 0; char ch; FILE* fp; fp = fopen("data4.txt", "r"); if(fp==NULL) {
阅读全文
posted @ 2023-06-14 23:51 lwh442
阅读(17)
评论(0)
推荐(0)
2023年5月30日
实验6 结构体应用编程
摘要: 4.实验任务4 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 cha
阅读全文
posted @ 2023-05-30 19:30 lwh442
阅读(41)
评论(0)
推荐(0)
2023年5月10日
实验5 指针
摘要: 1.实验任务1 #include <stdio.h> #define N 4 int main() { int x[N] = { 1, 9, 8, 4 }; int i; int* p; // 方式1:通过数组名和下标遍历输出数组元素 for (i = 0; i < N; ++i) printf("
阅读全文
posted @ 2023-05-10 23:03 lwh442
阅读(12)
评论(0)
推荐(0)
2023年4月20日
实验4 数组应用编程
摘要: 实验任务1 #include <stdio.h> #define N 4 int main() { int a[N] = { 2, 0, 2, 3 }; char b[N] = { '2', '0', '2', '3' }; int i; printf("sizeof(int) = %d\n", s
阅读全文
posted @ 2023-04-20 13:27 lwh442
阅读(18)
评论(0)
推荐(0)
2023年4月5日
实验3 函数应用编程
摘要: 1.实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); vo
阅读全文
posted @ 2023-04-05 19:39 lwh442
阅读(41)
评论(0)
推荐(0)
2023年3月17日
实验2 C语言输入输出和控制语句应用编程
摘要: 一.实验结论 1.实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; sran
阅读全文
posted @ 2023-03-17 22:00 lwh442
阅读(59)
评论(0)
推荐(0)
2023年3月7日
实验1 C语言开发环境使用和编程初体验
摘要: 一.实践任务1 //打印一个字符小人 #include <stdio.h> int main() { printf(" o \n"); printf("<H>\n"); printf("I I\n"); return 0; } //打印两个字符小人 #include <stdio.h> int ma
阅读全文
posted @ 2023-03-07 20:17 lwh442
阅读(71)
评论(0)
推荐(0)
公告