• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 高级语言程序设计第一节课作业

    ![IMG20251014142041](https://img2024.cnblogs.com/blog/3713987/202510/3713987-20251014143912821-1812852782.jpg) ![IMG20251014141539](https://img2024.cnblogs.com/blog/3713987/202510/3713987-202510141439
     2025高级语言程序设计(福州大学)   Kazen   2025-10-14 18:23    0    8
  • 第二次实验作业

    1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 #define N1 80 7 #define N2 35 8 9 int main(){ 10 int cnt; 11 int random_
     程序设计基础(南京信息工程大学)   陆绎   2025-10-14 11:44    0    8
  • 高级语言程序第一次作业

    班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500326 姓名:罗炜 一.安装C程序编译环境 1.1安装dev
     2025高级语言程序设计(福州大学)   小夜仆   2025-10-14 19:10    0    8
  • 作业1

    102500425杨郑伟 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 https://edu.cnblogs.com/campus/fzu/gjyycx
     2025高级语言程序设计(福州大学)   杨郑伟   2025-10-14 18:02    0    8
  • 102500427廖伦哲

    这个作业属于的课程: https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13358 学号:102500427 姓名:廖伦哲 安装环境的过程和安装成功
     2025高级语言程序设计(福州大学)   sky4444   2025-10-14 14:49    0    8
  • 高级语言程序设计第一次作业

    前言 [点击跳转班级](首页 - 2025高级语言程序设计 - 福州大学 - 班级博客 - 博客园) [点击跳转作业](高级语言程序设计第一次作业 - 作业 - 2025高级语言程序设计 - 班级博客 - 博客园) 学号:102500313 姓名:林奕鹏 作业 截图 1760440502510_ed
     2025高级语言程序设计(福州大学)   birdLin   2025-10-14 19:47    0    8
  • 高级程序语言第一次作业

    这个作业属于哪个课程:高级语言程序设计 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500434 姓名:王志勇 一:dev-c++的安装:注意设置相关要求,安装正常。 二:代码的编写: 2.1第一个
     2025高级语言程序设计(福州大学)   wzy6   2025-10-14 19:34    0    8
  • 实验一

    task1 // 现代C++标准库、算法库体验 // 本例用到以下内容: // 1. 字符串string, 动态数组容器类vector、迭代器 // 2. 算法库:反转元素次序、旋转元素 // 3. 函数模板、const引用作为形参 #include <iostream> #include <str
     面向对象程序设计(南京信息工程大学)   kk_n   2025-10-16 22:19    1    8
  • 实验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
     面向对象程序设计(南京信息工程大学)   木辛梓   2025-10-17 10:39    1    8
  • 高级程序语言第一次作业

    高级程序语言第一次作业 这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号 222200424 姓名 赵伟
     2025高级语言程序设计(福州大学)   孤独的行者啊   2025-10-16 15:39    0    8
  • 实验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
     程序设计基础(南京信息工程大学)   cchheenn   2025-10-14 17:18    0    8
  • 实验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_
     程序设计基础(南京信息工程大学)   夏夏夏x   2025-10-14 23:07    0    7
  • 实验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
     程序设计基础(南京信息工程大学)   wsh12345   2025-10-14 20:28    0    7
  • 作业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
     程序设计基础(南京信息工程大学)   Lantesry   2025-10-15 10:07    0    7
  • 实验作业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
     程序设计基础(南京信息工程大学)   哈气的大猫   2025-10-14 16:13    0    7
  • 实验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
     程序设计基础(南京信息工程大学)   幸福啥颜色呢   2025-10-14 17:50    0    7
  • 高级语言程序设计第一次作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500420 姓名:连骁晗 一.安装C程序的编
     2025高级语言程序设计(福州大学)   芸芸芸芸?   2025-10-15 23:30    0    7
  • 高级语言程序设计第一次作业

    这个作业属于哪个课程: 这个作业要求在哪里: 学号:102500401 姓名:林含悦 1.安装过程 载入文件 载入中 启动 2.代码编写与运行 2.1 2.2 2.3 总结 进行了下载devc++的操作,在编码中虽然屡屡碰壁会有差错,但仍在跌跌撞撞中成长。是一次难忘的体验。
     2025高级语言程序设计(福州大学)   林含悦   2025-10-15 23:15    0    7
  • 实验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
     面向对象程序设计(南京信息工程大学)   景思翰   2025-10-16 22:13    1    7
  • 算法第一章作业

    Google 编码规范 适用范围:覆盖 C++、Java、Python、Go 等主流语言,开源且被广泛参考 核心特点: 命名:C++/Java 类名用PascalCase,函数 / 变量用snake_case(Python)或camelCase(Java) 格式:缩进用 2 空格,每行不超过 80
     软件工程2403(广东外语外贸大学 - 信息学院)   RyoujiKirihara   2025-10-16 00:52    0    7
< Prev123456789101112···16Next >

Copyright ©2025 Cnblogs, Inc. Powered by .NET Core on Kubernetes. 问题反馈   帮助文档