摘要: 实验任务1 button.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using std::string; 7 using std::cout; 8 9 // 按钮类 10 class Button { 11 阅读全文
posted @ 2024-11-08 16:54 张朦丹 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 task1.c 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(" 阅读全文
posted @ 2024-11-08 10:39 张朦丹 阅读(5) 评论(0) 推荐(0) 编辑