-
实验5
#include #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int* pmin, int* pmax); int m -
measures for air pollution in India
India is a country that is also struggling with severe air pollution problems, particularly in its urban centers. The environmental issues India is de -
IF语句及代码风格
Chap 4 条件 IF 语句 IF语句的流程 eg: def f(x) : print("A",end="") if x == 0 : print("B",end="") print("C",end="") #x不等于0时,这两行代码不会执行 print("D") f(1) AD f(0) ABC -
Chinese Solution to Plastic Pollution in Philippines
Plastic Pollution in the Philippines A growing middle class, increased consumer demand and a strong economic boom have spurred the Philippines’ econom -
TRANSFERABILITY
A BRIEF INTRODUCTION OF AIR POLLUTION IN THE UNITED STATES More than one in three U.S. residents—120 million people—live in counties with unhealthy le -
Planting poplar trees—the application of a Chinese way to control soil cadmium pollution in Japan
Situations of soil cadmium pollution in Japan 资料查找:郭晨茜 王欣玲 写作:刘水文 博客排版:邹语嫣 In the last century, there was a serious health accident in Japan, an outbr -
软件技术基础第三次作业
这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/23rjjsjc 这个作业的目标 拍摄电梯演讲视频 姓名+学号 周润杰-2021330301167 章顺祺 2021330301164 视频链接:【软件技术基础电梯演讲作业】 https://www.bil -
实验4 现代C++标准库与类模板
实验任务5 TextCoder.hpp 1 #pragma once 2 3 #include 4 #include 5 6 using namespace std; 7 8 class TextCoder { 9 private: 10 string tex -
团队作业5——测试与发布(Alpha版本)
这个作业属于哪个课程 软件工程 这个作业要求在哪里 团队作业3——需求改进&系统设计 这个作业的目标 团队项目:对软件进行测试并报告Bug,编写发布说明 团队成员 学号 博客园主页 GitHub 徐宗韬(组长) 3121004802 yuLLin yulinnn 冯浩天 3121004779 FHT -
China's globally shared wisdom in sand control a microcosm of ecological civilization construction
小组成员:付佳 刘诺 彭丽熙 张晓婷 小组分工:集体讨论 共同完成 Introduction:Desertification, also called desertization, the process by which natural or human causes reduce the bio -
实验四
任务五 textcoder.hpp 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 class TextCoder 7 { 8 pr -
实验4
1 #include 2 #include 3 4 class TextCoder { 5 private: 6 std::string text; 7 8 void encoder() { 9 for (auto& c : text) { 10 if (c -
童旋:原因 段思勤:方法 饶佳宁:现状问题 张玲:视频寻找和上传文档 India: Recycling Waste Disposal
India: Recycling Waste Disposa https://m.baidu.com/video/page?pd=video_page&nid=5692468965712695349&sign=18154909529832694220&word=%E5%8D%B0%E5%BA%A6% -
之前交太早,小组不是这份
之前交太早,小组不是这份 -
实验5
实验任务1.1 源代码 1 #include 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 -
实验5
任务1源码 1 #include 2 #include 3 #define N 5 4 5 void input(int x[], int n); 6 void output(int x[], int n); 7 void find_min_max(int x -
实验五。
实验一 找到最大最小的数; 都指向x(a)数组首元素; 找出数组中最大值; 不可以,作用域结束,函数内的数组所占内存空间释放,指针变为野指针; 实验二: s1的大小是24;sizeof是数组所占字节数;strlen统计字符个数不算‘\0’; 不可以,s1的地址是const类型,而后面的字符串返回的是 -
电梯演讲作业
【软件技术基础电梯演讲作业】 https://www.bilibili.com/video/BV1hC4y127CQ/?share_source=copy_web&vd_source=1b9c3b6c54b4c77978daee39696b3c6f -
实验5 C语言指针应用编程
实验任务1(1) 1 #include 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 -
试验五
#include #define N 5 void input(int x[],int n); void output(int x[],int n); void find_min_max(int x[], int n, int *pmin, int *pmax); int main