摘要:
Task1 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 阅读全文
摘要:
Task1 t.h 1 #pragma once 2 3 #include <string> 4 5 // 类T: 声明 6 class T { 7 // 对象属性、方法 8 public: 9 T(int x = 0, int y = 0); // 普通构造函数 10 T(const T& t); 阅读全文
摘要:
Task1 code1.cpp 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 7 #include 阅读全文
摘要:
task4 code 1 #include<stdio.h> 2 3 int main() { 4 FILE* fp; 5 long cnt = 0, c = 0; 6 char ch; 7 8 fp = fopen("data4.txt", "r"); 9 if (fp == NULL) { 10 阅读全文
摘要:
task4 code 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double 阅读全文
摘要:
task1_1 code 1 #define _CRT_SECURE_NO_WARNINGS 2 3 #include <stdio.h> 4 #define N 5 5 void input(int x[], int n); 6 void output(int x[], int n); 7 voi 阅读全文
摘要:
task1_1 code 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #define N 4 4 void test1() { 5 int a[N] = { 1, 9, 8, 4 }; 6 int i; 7 // 输出数组a占用的 阅读全文
摘要:
task1 code 1 include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <windows.h> 5 #define N 80 6 7 void print_text(int line, int col, 阅读全文
摘要:
task1 code 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 #define N1 374 6 #define N2 465 7 int main() 8 { 9 int numbe 阅读全文
摘要:
https://www.cnblogs.com/nuist0415/ 阅读全文