会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
jrh06
博客园
首页
新随笔
联系
订阅
管理
2024年12月26日
实验7
摘要: task4: #include <stdio.h> int main() { FILE* fp; fp = fopen("data4.txt", "r"); if (fp == NULL) { return -1; } char t; int line_count = 0, char_count =
阅读全文
posted @ 2024-12-26 16:18 jjjrrhhhhh
阅读(25)
评论(0)
推荐(0)
2024年12月19日
实验6
摘要: task1: #include<stdio.h> #include<string.h> #include<stdlib.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; double per
阅读全文
posted @ 2024-12-19 16:03 jjjrrhhhhh
阅读(16)
评论(0)
推荐(0)
2024年12月8日
实验5
摘要: task1_1: 1 #include<stdio.h> 2 #define N 5 3 void input(int x[],int n); 4 void output(int x[],int n); 5 void find_min_max(int x[],int n,int *pmin,int
阅读全文
posted @ 2024-12-08 18:19 jjjrrhhhhh
阅读(14)
评论(0)
推荐(0)
2024年11月5日
实验4
摘要: task1: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(
阅读全文
posted @ 2024-11-05 18:00 jjjrrhhhhh
阅读(12)
评论(0)
推荐(0)
2024年10月26日
实验3
摘要: task1: Q1:将分数转为等第;整型;字符型 Q2:没有break,输出等第后将自动向下运行;字符型变量用单引号 task2: Q1:将输入中各个数字之和算出 Q2:这种算法使用迭代思想,原算法使用自然语言 task3: Q1:计算x的n次方 Q2:是; if(n == 0) return 1;
阅读全文
posted @ 2024-10-26 22:41 jjjrrhhhhh
阅读(15)
评论(0)
推荐(0)
2024年10月11日
实验2
摘要: 任务1: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 #define N1 397 7 #define N2 476 8 #define N3 21 9 10 int main()
阅读全文
posted @ 2024-10-11 14:19 jjjrrhhhhh
阅读(22)
评论(0)
推荐(0)
2024年9月27日
实验1
摘要: 任务1: 源代码1.1: 1 #include <stdio.h> 2 int main() 3 { 4 printf(" O \n"); 5 printf("<H> \n"); 6 printf("I I \n"); 7 printf(" O \n"); 8 printf("<H> \n"); 9
阅读全文
posted @ 2024-09-27 15:47 jjjrrhhhhh
阅读(21)
评论(0)
推荐(0)
公告