会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
qiuyp
博客园
首页
新随笔
联系
订阅
管理
2023年6月15日
实验7
摘要: task4 源代码 #include <stdio.h> #include<stdlib.h> #include<string.h> #define N 5 #define M 80 int main() { char ch[M]; int ch_counts = 0,n=0; FILE *fp;
阅读全文
posted @ 2023-06-15 11:33 17-邱远鹏
阅读(3)
评论(0)
推荐(0)
2023年6月1日
实验6
摘要: task4 源代码 #include <stdio.h> #include<string.h> #include<stdlib.h> #define N 100 typedef struct { char num[10];/*学号*/ int s1;/*期末成绩*/ int s2;/*平时成绩*/
阅读全文
posted @ 2023-06-01 10:24 17-邱远鹏
阅读(12)
评论(0)
推荐(0)
2023年5月11日
实验5
摘要: task1 源代码 #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-11 13:13 17-邱远鹏
阅读(7)
评论(0)
推荐(0)
2023年4月20日
实验四
摘要: task1.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",
阅读全文
posted @ 2023-04-20 08:33 17-邱远鹏
阅读(9)
评论(0)
推荐(0)
2023年4月6日
实验三
摘要: task1 源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]);
阅读全文
posted @ 2023-04-06 09:14 17-邱远鹏
阅读(35)
评论(0)
推荐(0)
2023年3月22日
实验2
摘要: task1 源代码 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define R1 586 #define R2 701 int main(){ int number; int i; srand(time(0)
阅读全文
posted @ 2023-03-22 20:17 17-邱远鹏
阅读(23)
评论(0)
推荐(0)
2023年3月6日
实验1
摘要: task1 源代码 1.1 #include <stdio.h> #include <stdlib.h> int main() { printf(" O \n"); printf("<H> \n"); printf("I I \n"); printf(" O \n"); printf("<H> \n
阅读全文
posted @ 2023-03-06 20:58 17-邱远鹏
阅读(27)
评论(0)
推荐(0)
公告