gan123456lu

导航

2022年6月14日 #

实验6

摘要: task 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("%d", x[ 阅读全文

posted @ 2022-06-14 00:11 露噜噜露 阅读(7) 评论(0) 推荐(0) 编辑

2022年6月5日 #

实验五

摘要: //task 1-1// 将图书信息写入文本文件data1.txt #include <stdio.h> #define N 5 #define M 80 typedef struct { char name[M]; // 书名 char author[M]; // 作者 }Book; int ma 阅读全文

posted @ 2022-06-05 17:49 露噜噜露 阅读(11) 评论(0) 推荐(0) 编辑

2022年5月8日 #

实验四

摘要: task1_1.c #include <stdio.h> #define N 4 int main() { int a[N] = {2, 0, 2, 2}; char b[N] = {'2', '0', '2', '2'}; int i; printf("sizeof(int) = %d\n", s 阅读全文

posted @ 2022-05-08 10:21 露噜噜露 阅读(6) 评论(0) 推荐(0) 编辑

2022年4月19日 #

实验3

摘要: //task1//#include <time.h> #include <windows.h> #define N 80 void printText(int line, int col, char text[]); // 函数声明 void printSpaces(int n); // 函数声明 阅读全文

posted @ 2022-04-19 22:20 露噜噜露 阅读(22) 评论(0) 推荐(0) 编辑

2022年4月16日 #

实验2

摘要: task1.c//生成五个介于2018级到2021级间的随机学号//#include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int grade, number; int i; srand(ti 阅读全文

posted @ 2022-04-16 16:06 露噜噜露 阅读(9) 评论(0) 推荐(0) 编辑

2022年3月26日 #

实验1

摘要: //task1-1// #include<stdio.h> int main() { printf(" O\n"); printf("<H>\n"); printf("I I\n"); printf("\n"); printf(" O\n"); printf("<H>\n"); printf("I 阅读全文

posted @ 2022-03-26 17:47 露噜噜露 阅读(34) 评论(0) 推荐(0) 编辑