摘要: task 1 main.cpp #include "window.hpp" #include <iostream> using std::cout; using std::cin; void test() { Window w1("new window"); w1.add_button("maxim 阅读全文
posted @ 2024-11-10 18:28 何逸雪 阅读(3) 评论(0) 推荐(0) 编辑
摘要: task 1 main.cpp #include "t.h" #include <iostream> using std::cout; using std::endl; void test(); int main() { test(); cout << "\nmain: \n"; cout << " 阅读全文
posted @ 2024-10-29 19:48 何逸雪 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 任务一: 代码: #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; template<typename T> void output(const T &c 阅读全文
posted @ 2024-10-14 16:58 何逸雪 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 4.任务4 #include <stdio.h> int main() { int i=0; char s; FILE *fp; fp=fopen("D:\\hhh\\data4.txt","r"); while(1){ s=fgetc(fp); if(s==EOF){ break; } else 阅读全文
posted @ 2023-12-20 17:53 何逸雪 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1.task4 #include <stdio.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sales_price; // 售价 阅读全文
posted @ 2023-12-17 16:46 何逸雪 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.test1 #include <stdio.h> #define N 5 void input(int x[],int n); void output(int x[],int n); void find_min_max(int x[],int n,int *pmin,int *pmax); in 阅读全文
posted @ 2023-12-04 11:20 何逸雪 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1.test1 #include<stdio.h> #define N 4 void test1(){ int a[N]={1,9,8,4}; int i; printf("sizeof(a)=%d\n",sizeof(a)); for(i=0;i<N;++i) printf("%p:%d\n",& 阅读全文
posted @ 2023-11-18 14:41 何逸雪 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1.test1 1 #include <stdlib.h> 2 #include <time.h> 3 #include <windows.h> 4 #define N 80 5 #include<stdio.h> 6 7 void print_text(int line,int col,char 阅读全文
posted @ 2023-11-05 16:29 何逸雪 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1.test 1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 374 #define N2 465 int main () { int number; int i; srand(tim 阅读全文
posted @ 2023-10-21 12:02 何逸雪 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1.实验1 源代码 1 //打印一个字符小人 2 3 #include <stdio.h> 4 int main() 5 { 6 printf(" o o \n"); 7 printf("<H> <H>\n"); 8 printf("I I I I\n"); 9 10 return 0; 11 } 阅读全文
posted @ 2023-09-30 23:41 何逸雪 阅读(11) 评论(0) 推荐(0) 编辑