-
高级语言程序设计第一节课作业
 { 10 int cnt; 11 int random_ -
高级语言程序第一次作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500326 姓名:罗炜 一.安装C程序编译环境 1.1安装dev -
作业1
102500425杨郑伟 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 https://edu.cnblogs.com/campus/fzu/gjyycx -
102500427廖伦哲
这个作业属于的课程: https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13358 学号:102500427 姓名:廖伦哲 安装环境的过程和安装成功 -
高级语言程序设计第一次作业
前言 [点击跳转班级](首页 - 2025高级语言程序设计 - 福州大学 - 班级博客 - 博客园) [点击跳转作业](高级语言程序设计第一次作业 - 作业 - 2025高级语言程序设计 - 班级博客 - 博客园) 学号:102500313 姓名:林奕鹏 作业 截图 1760440502510_ed -
高级程序语言第一次作业
这个作业属于哪个课程:高级语言程序设计 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500434 姓名:王志勇 一:dev-c++的安装:注意设置相关要求,安装正常。 二:代码的编写: 2.1第一个 -
实验一
task1 // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <str -
实验1 现代C++编程初体验
实验任务1源代码task1.cpp 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 // 模板函数声明 7 template<typename T> 8 void out -
高级程序语言第一次作业
高级程序语言第一次作业 这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号 222200424 姓名 赵伟 -
实验2 C语言分支与循环基础应用编程
实验1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 #define N1 80 6 #define N2 35 7 int main() { 8 int cnt; 9 int rando -
实验2
实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main() { int cnt; int random_major, random_ -
实验2
实验结论 实验任务1 源代码 1 int main(){ 2 int cnt; 3 int random_major,random_no; 4 srand(time(NULL)); 5 cnt =0; 6 while(cnt<N){ 7 random_major =rand()%2; 8 if(ra -
作业2
实验任务1: 源代码: #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_major,ran -
实验作业2
实验1 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 #define N1 80 6 #define N2 35 7 int main() { 8 int cnt; 9 int rando -
实验2
实验任务1 源代码: #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main() { int cnt; int random_major, ra -
高级语言程序设计第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500420 姓名:连骁晗 一.安装C程序的编 -
高级语言程序设计第一次作业
这个作业属于哪个课程: 这个作业要求在哪里: 学号:102500401 姓名:林含悦 1.安装过程 载入文件 载入中 启动 2.代码编写与运行 2.1 2.2 2.3 总结 进行了下载devc++的操作,在编码中虽然屡屡碰壁会有差错,但仍在跌跌撞撞中成长。是一次难忘的体验。 -
实验1 现代C++编程初体验
实验1 现代C++编程初体验 实验一 源代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 template<typename T> 7 void output(co -
算法第一章作业
Google 编码规范 适用范围:覆盖 C++、Java、Python、Go 等主流语言,开源且被广泛参考 核心特点: 命名:C++/Java 类名用PascalCase,函数 / 变量用snake_case(Python)或camelCase(Java) 格式:缩进用 2 空格,每行不超过 80