首页 > 编程语言 >CSC1003 OJ system running Java SDK.

CSC1003 OJ system running Java SDK.

时间:2024-11-09 20:31:01浏览次数:1  
标签:java matrix CSC1003 marks will input Java line OJ

CSC1003 Assignment 2

Important Notes:

  1. The assignment is an individual project, to be finished on one’s own effort.
  2. The work must be submitted before 6pm Nov. 8, 2024 (Friday), Beijing Time. This is a firmdeadline. No late submissions are accepted.
  1. Plagiarism is strictly forbidden, regardless of the role in the process. Notably, ten consecutivelines of identical codes are treated as plagiarism. Depending on the seriousness of theplagiarism, 30%-100% marks will be deducted.Marking Criterion:The maximum score a student could obtain in this assignment is 100 marks(i.e. more than 100marks will be counted as 100 marks).Two java programs are to be submitted. Each program will be evaluated with several unseentest cases. A submission obtains the full score if and only if both programs pass all test cases.Running Environment:
  1. The submissions will be evaluated in the OJ system running Java SDK. It is the students’responsibility to make sure that his/her submissions are compatible with the OJ system.
  1. The submission is only allowed to import four packages of (java.lang.*; java.util.*; java.math.*;java.io.*) included in Java SDK. No other packages are allowed.
  1. All students will have an opportunity to test their programs in the OJ platform prior to theofficial submission.Submission Guidelines:
  1. The score is based on your submission on OJ, but you also need to submit your code (that is,directly submit the screenshots, MatrixMultiplication.java and AsciiArt.java) on blackboard.Otherwise, you will get 0 for this assignment.
  1. Inconsistency with or violation from the guideline leads to marks deduction.
  2. All students are reminded to read this assignment document carefully and in detail. No

argument will be accepted on issues that have been specified in this document.Exercise One (15 marks):Finish the three problems (https://oj.cuhk.edu.cn/d/csc1003_2024_fall/p) from P1010 to 代写CSC1003   OJ system running Java SDK.   P1012online, and upload screenshot(s) to show that you finished the exercise. You can earn 15 markswithout requiring “AC” by attempting to complete 3 questions.Exercise Two (50 marks):Write a java program named “MatrixMultiplication.java” to calculate the product of two matricesof sizes

标签:java,matrix,CSC1003,marks,will,input,Java,line,OJ
From: https://www.cnblogs.com/comp9321/p/18536472

相关文章

  • java创始人写了哪些书?他目前的境况如何?
    java的创始人詹姆斯·高斯林(JamesGosling)除了对Java编程语言的开创性贡献外,还参与了相关书籍的编写。其中,基于JavaSE8规范,由Java语言发明者编写的权威参考书《Java语言规范:基于JavaSE8》就是高斯林参与撰写的一部重要作品。这本书是Java程序员精进的经典之作,为Java开发者......
  • 【Java项目】基于SpringBoot的【生鲜交易系统】
    技术简介:系统软件架构选择B/S模式、java技术和MySQL数据库等,总体功能模块运用自顶向下的分层思想。系统简介:考虑到实际生活中在生鲜交易方面的需要以及对该系统认真的分析,将系统权限按管理员,用户这两类涉及用户划分。(a)管理员;管理员使用本系统涉到的功能主要有:首页,个人......
  • Java流程控制语句-while
    目录什么是whilewhile的用法:1:while2:do...while二者区别:特别注意:死循环:1:未对条件进行操作:什么是while在Java流程控制语句中,while属于循环语句,用来进行循环执行代码块,根据条件来进行循环,直到条件不符合则退出循环,正常情况下单独使用,偶尔会和do同时使用,用来设置更加符......
  • 基于Java+SpringBoot心理测评心理测试系统功能实现十
    免费下载:[猿来入此]一、前言介绍:1.1项目摘要心理测评和心理测试系统在当代社会中扮演着越来越重要的角色。随着心理健康问题日益受到重视,心理测评和心理测试系统作为评估个体心理状态、诊断心理问题、制定心理治疗方案的工具,其需求和应用范围不断扩大。首先,现代社会节奏快速,......
  • 【java】ArrayList与LinkedList的区别
    目录1.说明2.内部实现2.1ArrayList2.2LinkedList3.性能特点3.1插入和删除操作3.2访问操作3.1遍历操作4.使用场景5.扩容机制6.空间开销1.说明1.Java中的ArrayList和LinkedList是两种常用的集合实现类,都属于Java集合框架的一部分,但它们在内部实现、......
  • Java入门程序之一维数组的基础运用
    Java入门程序之一维数组的基础运用​本文详细介绍了Java中数组的概念、创建与初始化、一维数组的使用、内存分布以及二维数组。讲解了数组的静态与动态初始化、元素访问与修改、遍历方式。一、数组的基本概念数组的初始化例如:int[]array1=newint[20];//创建一个......
  • Java 单例模式
    Java单例模式示例 packagecom.joyupx.cms.example.single;/***多线程环境中保证单例的写法。*@authorhapday*/publicclassSingleInstanceExample{privatestaticSingleInstanceExamplesingleInstanceExample;privateSingleInstanceExample()......
  • (JAVA)基于TCP通信多人聊天系统
    一、目标 这个项目是一个基于TCP协议的简单多人聊天系统,包含一个服务器和多个客户端。服务器接受多个客户端的连接,每个客户端发送的消息都可以转发给其他所有在线的客户端,实现了一个基本的多人实时聊天功能。项目使用Java编程语言编写,利用ServerSocket和Socket 创建......
  • 104.力扣(leetcode)二叉树的最大深度(JAVA)
    一、目标给定一个二叉树 root ,返回其最大深度。二叉树的 最大深度 是指从根节点到最远叶子节点的最长路径上的节点数。二、代码分析总代码:/***Definitionforabinarytreenode.*publicclassTreeNode{*intval;*TreeNodeleft;*TreeN......
  • 力扣(Leetcode)112. 路径总和(JAVA)
    一、目标 给你二叉树的根节点 root 和一个表示目标和的整数 targetSum 。判断该树中是否存在 根节点到叶子节点 的路径,这条路径上所有节点值相加等于目标和 targetSum 。如果存在,返回 true ;否则,返回 false 。叶子节点 是指没有子节点的节点。二、代码解读......