-
高级语言程序设计课程第三次个人作业
102400210陈仕杰 4.8的练习第二题的d项一开始不知怎么输入,后来查阅资料得知要用到指针,预习了一下才写出来。后面的几题没什么问题 5.11的前面六题没有问题,第七题看不懂题目写不出来,第八题没问题,第九题看不懂题目 -
实验1 现代C++编程初体验
实验任务1: task1.cpp 点击查看代码 // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostr -
高级语言程序设计课程第三次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13284 学号:102400232 姓名:张伟林 4.8.2 4.8.3 -
实验二
任务一: 源代码: `#include <stdio.h> include <stdlib.h> include <time.h> define N 5 define N1 397 define N2 476 define N3 21 int main() { int cnt; int random -
实验1 现代C++编程初体验
任务1: 源代码task1.cpp 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 6 using namespace std; 7 8 template<typename T> 9 -
实验1 c++
任务1: task1.cpp: // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #in -
实验1 现代C++编程初体验
任务1: 源代码task1.cpp 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 //模板函数声明 5 template<typename T> 6 void output(const T &c); 7 8 //普通函数声明 9 void -
实验一
代码一: 迭代器的v.end()是指容器最后一个元素的后面一个 代码二: 代码三: 点击查看代码 bool is_palindrome(std::string t) { int i = 0, j, flag = 0; j = t.size() - 1; for (; i < j; i++, j--) -
高级语言程序设计第三次个人作业
班级网址:https://edu.cnblogs.com/campus/fzu/2024C 作业网址:https://edu.cnblogs.com/campus/fzu/2024C/homework/13284 姓名:袁湘湘 学号:102400109 一,第四章编程练习: 1,4.8.2 问题:忘 -
实验1 现代C++编程初体验
任务1 1 // 现代C++标准库、算法库体验 2 // 本例用到以下内容: 3 // 1. 字符串string, 动态数组容器类vector、迭代器 4 // 2. 算法库:反转元素次序、旋转元素 5 // 3. 函数模板、const引用作为形参 6 7 #include <iostream> 8 -
高级语言程序设计课程第三次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/2024C 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/2024C/homework/13284 学号:102400108 姓名:王馨怡 [编写并运行书本第4章 -
实验1 C++
task1: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 // 声明 9 // 模板函数声明 10 template -
实验1
实验任务1: // 现代C++标准库、算法库体验// 本例用到以下内容:// 1. 字符串string, 动态数组容器类vector、迭代器// 2. 算法库:反转元素次序、旋转元素// 3. 函数模板、const引用作为形参 #include <iostream>#include <string> -
实验一
任务一: 代码: #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; template<typename T> void output(const T &c -
实验1现代c++编程初体验
1.实验任务一 task1.cpp // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> # -
实验2
任务1: 源代码 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 #define N1 397 7 #define N2 476 8 #define N3 21 9 10 int main() -
实验2_C语言分支与循环基础应用编程
任务1 1.rand()函数会生成一个伪随机整数。rand() % (N2 - N1 + 1)这部分会生成一个在0到N2 - N1范围内的随机数。再加上N1,就使得随机数的范围变为N1到N2。 2.rand()生成伪随机整数。rand() % N3会生成一个在0到N3 - 1范围内的随机数。再加上1 -
实验2
#include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 397 #define N2 476 #define N3 21 int main() { int cnt; int random_majo -
实验二
task_1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 397 #define N2 476 #define N3 21 int main() { int cnt; int rand -
实验一 现代C++ 基础编程
task1 代码: #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; // 声明 // 模板函数声明 template<typename T> void