摘要:
实验任务二 源码: 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 #include <iomanip> 7 8 using std 阅读全文
摘要:
实验任务一 源码 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 public: 12 阅读全文
摘要:
实验任务一 源码 1 #pragma once 2 3 #include<string> 4 5 class T { 6 public: 7 T(int x = 0, int y = 0); 8 T(const T& t); 9 T(T&& t);//移动构造函数 10 ~T(); 11 void 阅读全文
摘要:
任务一 源代码 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 6 using namespace std; 7 8 template<typename T> 9 void outp 阅读全文
摘要:
task4 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> int main() { FILE* fp; char ch; int cnt = 0; fp = fopen("data4.txt", "r"); 阅读全文
摘要:
task4 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #define N 10 typedef struct { char isbn[20]; char name[80]; char author[80]; double sales_pric 阅读全文
摘要:
task1_1 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x 阅读全文
摘要:
task1_1 #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++) print 阅读全文
摘要:
task1 #include<stdio.h> #include<stdlib.h> #include<time.h> #include<windows.h> #define N 80 void print_text(int line, int col, char text[]); void pri 阅读全文
摘要:
task1 #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(time(0)); 阅读全文