会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
LittleZcy
博客园
首页
新随笔
联系
订阅
管理
1
2
下一页
2025年12月2日
实验四
摘要: 任务一: GradeCalc.hpp #pragma once #include <vector> #include <array> #include <string> class GradeCalc { public: GradeCalc(const std::string& cname); vo
阅读全文
posted @ 2025-12-02 17:00 Little_Zcy
阅读(2)
评论(0)
推荐(0)
2025年11月25日
实验三
摘要: 任务一 1 #pragma once 2 #include <iostream> 3 #include <string> 4 class Button { 5 public: 6 Button(const std::string& label_); 7 const std::string& get_
阅读全文
posted @ 2025-11-25 21:50 Little_Zcy
阅读(4)
评论(1)
推荐(0)
2025年10月28日
实验二
摘要: 任务一: T.h 1 #pragma once 2 #include <string> 3 // 类T: 声明 4 class T { 5 // 对象属性、方法 6 public: 7 T(int x = 0, int y = 0); // 普通构造函数 8 T(const T &t); // 复制
阅读全文
posted @ 2025-10-28 21:58 Little_Zcy
阅读(9)
评论(1)
推荐(0)
2025年10月16日
地址
摘要: https://home.cnblogs.com/LittleZcy
阅读全文
posted @ 2025-10-16 23:37 Little_Zcy
阅读(11)
评论(0)
推荐(0)
实验一
摘要: 任务一: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 template<typename T> 7 void output(const T& c); 8 void t
阅读全文
posted @ 2025-10-16 23:30 Little_Zcy
阅读(10)
评论(1)
推荐(0)
2024年12月24日
实验七
摘要: 任务四: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 void write(); 5 6 void read(int *x,int *y); 7 int main() { 8 int x = 0, y = 0; 9 write(); 10 read( &
阅读全文
posted @ 2024-12-24 21:18 Little_Zcy
阅读(17)
评论(0)
推荐(0)
2024年12月16日
实验六
摘要: 任务四 #include <stdio.h> #include<stdlib.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double sal
阅读全文
posted @ 2024-12-16 14:54 Little_Zcy
阅读(13)
评论(0)
推荐(0)
2024年12月2日
实验五
摘要: 任务一 1 #include <stdio.h> 2 #define N 5 3 void input(int x[], int n); 4 void output(int x[], int n); 5 void find_min_max(int x[], int n, int *pmin, int
阅读全文
posted @ 2024-12-02 14:08 Little_Zcy
阅读(21)
评论(0)
推荐(0)
2024年11月4日
实验四
摘要: 任务一: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1() { 5 int x[N] = {1, 9, 8, 4}; 6 int i; 7 printf("sizeof(x) = %d\n", sizeof(x)); 8
阅读全文
posted @ 2024-11-04 19:33 Little_Zcy
阅读(13)
评论(0)
推荐(0)
2024年10月23日
实验三
摘要: 任务1: 1 #include <stdio.h> 2 char score_to_grade(int score); // 函数声明 3 int main() { 4 int score; 5 char grade; 6 while (scanf_s("%d", &score) != EOF) {
阅读全文
posted @ 2024-10-23 18:31 Little_Zcy
阅读(32)
评论(0)
推荐(0)
1
2
下一页
公告