• 首页
  • 校区
  • 班级
  • 博文
  • 评论
  • 作业
总阅读排行 | 周阅读排行 | 零回复 | 有回复 | 作业博文 | 其他博文 | 所有博文
零回复 | 有回复 | 作业 | 其他 | 所有
  • 实验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_
     程序设计基础(南京信息工程大学)   |l|   2025-10-14 15:51    0    4
  • 实验任务2

    task1.c A1:起到确保程序每次运行输出数据随机性的作用 A2:功能是随机生成数据(学号) task2.c A1:会导致程序继续运行计算的是多次售卖价格的总和,而不是单次售卖金额 A2:在while循环中快速进入下一个操作过程中 task3 1 #include <stdio.h> 2 3 i
     程序设计基础(南京信息工程大学)   添罐望仔   2025-10-15 21:42    0    4
  • 实验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_
     程序设计基础(南京信息工程大学)   202563160003   2025-10-14 22:43    0    4
  • 实验2

    实验任务一 #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_no; s
     程序设计基础(南京信息工程大学)   孙棒棒   2025-10-14 16:27    0    4
  • task2

    任务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_no; sr
     程序设计基础(南京信息工程大学)   iprile1   2025-10-15 13:12    0    4
  • 实验2 C语言分支与循环基础应用编程

    实验任务1 task1.c 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 c
     面向对象程序设计(南京信息工程大学)   ToffeeMa   2025-10-17 17:26    0    4
  • 实验2

    实验任务1 test1.c源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main() { int cnt; int random_maj
     程序设计基础(南京信息工程大学)   thirin   2025-10-16 21:12    0    4
  • experiment2

    Task1 问题1: srand(time(NULL));的作用:经过查询,发现这行代码用于初始化随机数生成器的种子,srand()是设置随机种子的函数,time(NULL)返回当前系统时间,将当前时间作为种子,确保每次程序运行时产生的随机数序列不同.如果去掉这行代码,发现每次运行时产生的"随机"学
     程序设计基础(南京信息工程大学)   郑子鑫   2025-10-16 21:49    0    4
  • 实验二

    任务一 1.读取时间生成随机学号,删除后生成学号固定。 2.以20256343和20256136为基础生成随机学号。 任务二 1.去除后第一次运行正常,但后续运行时前几次运行的价格保留导致应付款为前几次运行付款之和 2.去除无法运行的情况 任务三 #include <stdio.h> int mai
     程序设计基础(南京信息工程大学)   Wu_He   2025-10-17 15:45    0    4
  • 实验2

    实验任务1 task1.c源代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_majo
     程序设计基础(南京信息工程大学)   lidayu12   2025-10-16 19:56    0    4
  • 算法第一周作业

    在当今软件开发行业,大厂的代码编写规范已经成为行业标杆。这些规范不仅仅是格式要求,更是一种工程思维的体现。简单探讨大厂代码规范的核心要点,帮助开发者提升代码质量与工程能力。 为什么需要严格的代码规范?当项目从个人开发转向团队协作,从几百行代码扩展到数百万行时,代码的可读性、可维护性变得至关重要。大厂
     软件工程2403(广东外语外贸大学 - 信息学院)   manbout   2025-10-17 15:04    0    4
  • 实验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_
     程序设计基础(南京信息工程大学)   道秋   2025-10-16 19:35    0    4
  • 实验1 现代C++编程初体验

    #include <iostream> #include <string> #include <vector> #include <algorithm> // 模板函数声明 template<typename T> void output(const T & c); void test1(); vo
     面向对象程序设计(南京信息工程大学)   canin   2025-10-17 21:23    0    4
  • 实验一 现代C++编程初体验

    实验任务一源代码: 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 template<typename T> 6 void output(const T& c); 7 void te
     面向对象程序设计(南京信息工程大学)   pithia   2025-10-17 20:52    0    4
  • 实验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 output(const
     面向对象程序设计(南京信息工程大学)   gher   2025-10-17 19:40    1    4
  • 实验一

    任务一: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 template<typename T> 7 void output(const T& c); 8 void t
     面向对象程序设计(南京信息工程大学)   Little_Zcy   2025-10-16 23:31    0    4
  • 实验1 现代C++编程初体验

    任务1: 源代码task1.cpp #include <iostream> #include <string> #include <vector> #include <algorithm> template<typename T> void output(const T &c); void test
     面向对象程序设计(南京信息工程大学)   huangyue1234   2025-10-17 23:21    1    4
  • 高级语言程序设计第1次作业

    这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102400120 姓名:林严泽 1 2 3 总结与思
     2025高级语言程序设计(福州大学)   林严泽   2025-10-17 21:42    0    4
  • 实验1

    task1.cpp 点击查看代码 #include <iostream> #include <string> #include <vector> #include <algorithm> // 模板函数声明 template<typename T> void output(const T &c);
     面向对象程序设计(南京信息工程大学)   hhbo527   2025-10-17 22:23    1    4
  • 实验2

    task1.c #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_
     程序设计基础(南京信息工程大学)   瀮昀   2025-10-18 12:11    0    4
< Prev1···910111213141516Next >

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