摘要: 实验任务一 源代码 button.hpp 1 #pragma once 2 3 #include<iostream> 4 #include<string> 5 6 using std::string; 7 using std::cout; 8 9 class Button{ 10 public: 1 阅读全文
posted @ 2024-11-07 21:01 笔墨书稠 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 源代码 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 阅读全文
posted @ 2024-10-27 23:18 笔墨书稠 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 源代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 // 声明 9 // 模板函数声明 10 temp 阅读全文
posted @ 2024-10-13 18:27 笔墨书稠 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实验任务4 源代码 1 #include<stdio.h> 2 #define N 100 3 #define M 100 4 int main(){ 5 FILE *fp; 6 char a[N][M]; 7 int i,j=0,k=0,s=0; 8 fp=fopen("data4.txt","r 阅读全文
posted @ 2023-12-18 11:22 笔墨书稠 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实验任务4 源代码 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 阅读全文
posted @ 2023-12-13 00:23 笔墨书稠 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 实验任务1.1 源代码 1 #include<stdio.h> 2 #define N 5 3 4 void input(int x[],int n); 5 void output(int x[],int n); 6 void find_min_max(int x[],int n, int *pmi 阅读全文
posted @ 2023-11-28 14:57 笔墨书稠 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 试验任务1.1 源代码 1 #include<stdio.h> 2 #define N 4 3 void test1(){ 4 int a[N]={1,9,8,4}; 5 int i; 6 7 printf("sizeof(a)=%d\n",sizeof(a)); 8 9 for(i=0;i<N;i 阅读全文
posted @ 2023-11-20 13:32 笔墨书稠 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 任务1 源代码 1 #include<stdio.h> 2 #include<time.h> 3 #include<windows.h> 4 #include<stdlib.h> 5 #define N 80 6 void print_line(int n); 7 void print_col(in 阅读全文
posted @ 2023-11-04 23:06 笔墨书稠 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 实验任务一 源代码 1 #include<stdio.h> 2 #include<time.h> 3 4 #define N 5 5 #define N1 375 6 #define N2 465 7 8 int main() 9 { 10 int number; 11 int i; 12 13 s 阅读全文
posted @ 2023-10-23 11:51 笔墨书稠 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 实验一 实验任务1 1--1源代码 1 #include<stdio.h> 2 int main() 3 { 4 5 printf(" O\n"); 6 printf("<H>\n"); 7 printf("I I\n"); 8 printf(" O\n"); 9 printf("<H>\n"); 阅读全文
posted @ 2023-09-28 15:49 笔墨书稠 阅读(29) 评论(0) 推荐(0) 编辑