-
实验3
实验任务1: button.hcpp #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const s -
高级语言程序设计课程第六次个人作业
作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 作业要求在哪里:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400206 姓名:王嘉萍 1. 2. 3. 4. 5. -
实验三
task 1 main.cpp #include "window.hpp" #include <iostream> using std::cout; using std::cin; void test() { Window w1("new window"); w1.add_button("maxim -
《计算机基础与程序设计》第7周学习总结
学期(2024-2025-1) 学号(20241428) 《计算机基础与程序设计》第7周学习总结 作业信息 |这个作业属于哪个课程|<班级的链接>(如[2024-2025-1-计算机基础与程序设计](https://edu.cnblogs.com/campus/besti/2024-2025-1-C -
实验4
任务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 -
实验四
实验任务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 printf("sizeof(x) = %d\n",sizeof(x -
实验3
任务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 { 11 pu -
实验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 printf("sizef(x)=%d\n",sizeof(x)); 10 11 for( -
实验4 C语言数组应用编程
实验任务1: task1.c 源代码: 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 printf("sizeof(x) = %d -
高级语言程序设计第六次个人作业
作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 作业要求在哪里:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102300114 姓名:陈思榕 这一题格式不对 问题总结 1. -
# 学期2024-2025-1 学号20241405 《计算机基础与程序设计》第7周学习总结
作业信息 |这个作业属于哪个课程|[2024-2025-1-计算机基础与程序设计]https://edu.cnblogs.com/campus/besti/2024-2025-1-CFAP| |这个作业要求在哪里|https://www.cnblogs.com/rocedu/p/9577842.ht -
高级语言程序设计第六次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400125 姓名:苏林 (一) (1) (2)在 -
实验4
Task1 #include <stdio.h>#define N 4#define M 2void test1(){ int x[N]={1,9,8,4}; int i; //输出数组x所占用的字节 printf("sizeof(x)=%d\n",sizeof(x)); //输出每个元素占据的地址 -
实验4
#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("%p:% -
实验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 -
实验3 类和对象_基础编程2
任务一: 源代码: 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 -
高级语言程序设计第六次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C/ 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13303 学号:102400117 姓名:廖逸轩 在oj经常做到质数, -
实验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 printf("sizeof(x)=%d\n",sizeof(x)); 10 11 -
实验四
实验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)); -
实验4 c语言数组应用编程
task1: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 #define M 2 5 6 7 void test1(){ 8 int x[N]={1,9,8,4}; 9 int i; 10 11 printf("sizeof(x)