摘要:
1. 实验任务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 Butto 阅读全文
摘要:
1. 实验任务1 t.h源代码: 1 #pragma once 2 #include <string> 3 4 // 类T: 声明 5 class T { 6 public: 7 // 对象属性、方法 8 T(int x = 0, int y = 0); // 普通构造函数 9 T(const T& 阅读全文
摘要:
1. 实验任务1 task1源代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 // 声明 9 // 模板函数声明 阅读全文
摘要:
1. 实验任务1 【验证性实验】 2. 实验任务2 【验证性实验】 3. 实验任务3 【验证性实验】 4. 实验任务4 task4源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 int main(){ 5 FILE *fp; 6 int t=0; 阅读全文
摘要:
1. 实验任务1 【验证性实验】 2. 实验任务2 【验证性实验】 3. 实验任务3 【验证性实验】 4. 实验任务4 task4源代码: 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 10 4 5 typedef struct { 6 阅读全文
摘要:
1. 实验任务1 task1_1源代码: 1 #include <stdio.h> 2 #include<stdlib.h> 3 #define N 5 4 5 void input(int x[], int n); 6 void output(int x[], int n); 7 void fin 阅读全文
摘要:
1.实验任务1 task1_1源代码: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 5 void test1() { 6 int a[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组a占用的内存字节数 阅读全文
摘要:
1.实验任务1 task1源代码: 1 #include <stdlib.h> 2 #include <time.h> 3 #include <windows.h> 4 #define N 80 5 6 void print_text(int line, int col, char text[]); 阅读全文
摘要:
1.实验任务1 task1源代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 #define N1 374 7 #define N2 465 8 9 int main() 10 { 阅读全文
摘要:
1.实验任务1 task1_1源代码: 1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 printf(" 0 \n"); 6 printf("<H>\n"); 7 printf("I I\n"); 8 printf(" 0 阅读全文