-
实验三
任务1: #include "window.hpp" #include <iostream> using std::cout; using std::cin; void test() { Window w1("new window"); w1.add_button("maximize"); w1.d -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400121 姓名:林永庆 1 2 3 4 5 -
第四次作业
实验1 代码 #include<stdio.h> #define N 4 #define M 2 void test1(){ int x[N]={1,9,8,4}; int i; printf("sizeof(x)=%d\n",sizeof(x)); for(i=0;i<N;++i) printf( -
实验四
任务一: 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 -
实验4
task1 源代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof -
实验4
task 1 点击查看代码 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", si -
实验三
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 -
实验三
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 Button { 1 -
数据采集作业3
课程链接 https://edu.cnblogs.com/campus/fzu/2024DataCollectionandFusiontechnology 作业链接 https://edu.cnblogs.com/campus/fzu/2024DataCollectionandFusiontechn -
OPP实验三
任务一、 问题1 自定义了两个类,分别是window和button类,引用了标准库vector和string类 window {string,button vector} button {string} 问题2 这个函数可以使用inline来修饰,它的逻辑简单,使用可以优化程序 不可以使用const -
实验3
task1: 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 -
高级语言程序设计课程第六次个人作业
班级:https://edu.cnblogs.com/campus/fzu/2024C/ 作业:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 让指针数加一写成指针数=指针数+1,不能自加 位置写错了 没问题 不会用指针 5: 没问题 -
团队作业3--需求改进&系统设计
软件工程 班级链接 作业要求 作业要求 作业目标 改进项目需求分析和原型设计,进行系统设计,完成项目执行与测试的计划制定 github仓库 团队项目 队名:P人大联盟 团队成员 姓名 学号 王睿娴 3222003968 张颢严 3222004426 梁恬(组长) 3222004467 潘思言 322 -
实验4
任务1 源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeo -
高级语言程序设计课程第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400118 姓名:林嘉祚 1 2 3 4 5 -
实验4
任务1: #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x)); -
实验3 类和对象_基础编程2
任务1 源码: 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: 1 -
实验3 类和对象_基础编程2
实验3 类和对象_基础编程2 实验任务 1 // button.hpp #pragma once #include <iostream> #include <string> using std::cout; using std::string; // 按钮类 class Button { publi -
实验4
Task1.c 问题1:是,是 问题2:是,是,相差为4,x[0]所占字节 Task2.c 形参形式:int fuc(int x[]),实参形式:fuc(x) input作用:输入数组,确定数组元素。compute功能:去掉最大值,去掉最小值,取平均数 Task3.c 观察:形参书写形式:int x -
实验4 C语言数组应用编程
任务一 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x));