99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

COS110代做、代寫C/C++設(shè)計(jì)程序

時間:2024-08-22  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



Department of Computer Science
Faculty of Engineering, Built Environment & IT
University of Pretoria
COS110 - Program Design: Introduction
Practical 4 Speciffcations
Release Date: 19-08-2024 at 06:00
Due Date: 23-08-2024 at 23:59
Total Marks: 150
1Contents
1 General Instructions 3
2 Overview 3
3 Background 3
4 Your Task: 4
4.1 Colour . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
4.1.1 Members . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
4.1.2 Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
4.2 Mixer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
4.2.1 Members . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
4.2.2 Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
5 Testing 9
6 Implementation Details 10
7 Upload Checklist 10
8 Submission 11
9 Accessibility 11
21 General Instructions
• Read the entire assignment thoroughly before you start coding.
• This assignment should be completed individually, no group effort is allowed.
• To prevent plagiarism, every submission will be inspected with the help of dedicated
 software.
• Be ready to upload your assignment well before the deadline, as no extension will be
granted.
• If your code does not compile, you will be awarded a mark of 0. The output of your program
will be primarily considered for marks, although internal structure may also be tested (eg. the
presence/absence of certain functions or classes).
• Failure of your program to successfully exit will result in a mark of 0.
• Note that plagiarism is considered a very serious offence. Plagiarism will not be tolerated, and
disciplinary action will be taken against offending students. Please refer to the University of
Pretoria’s plagiarism page at https://portal.cs.up.ac.za/files/departmental-guide/.
• Unless otherwise stated, the usage of c++11 or additional libraries outside of those indicated
in the assignment, will not be allowed. Some of the appropriate ffles that you have submit will
be overwritten during marking to ensure compliance to these requirements. Please ensure
you use c++98
• All functions should be implemented in the corresponding cpp ffle. No inline implementation
in the header ffle apart from the provided functions.
• The usage of ChatGPT and other AI-Related software is strictly forbidden and will be considered
 as plagiarism.
• Note, UML notation for variable and function signatures are used in this assignment.
2 Overview
Operator overloading in C++ allows you to deffne custom behaviors for operators when applied
to user-deffned types, enhancing code readability and ffexibility. This enhances the ffexibility and
readability of your code. In this practical you will simulate colours being mixed, to better your
understanding of operator overloading in C++.
3 Background
The RGB colour model is an additive colour model in which the red, green and blue primary colours
of light are added together in various ways to reproduce a broad array of colours. Each of the values
3are an integer between 0 and 255. In this practical you will implement a Colour class and a Mixer
class to simulate how the RGB values of colours are used to produce new colours.
4 Your Task:
You are required to implement the following class diagram illustrated in Figure 1. Pay close attention
to the function signatures as the h ffles will be overwritten, thus failure to comply with the UML,
will result in a mark of 0.
Figure 1: Class diagrams
Note, the importance of the arrows between the classes are not important for COS 110 and will
be expanded on in COS 214.
44.1 Colour
The colour class represents a colour with RGB values and have methods to change the RGB values.
4.1.1 Members
• -red: int
– This member variable contains the red value of the colour.
• -green: int
– This member variable contains the green value of the colour.
• -blue: int
– This member variable contains the blue value of the colour.
4.1.2 Functions
• +Colour(red : int = 0, green : int = 0, blue : int = 0)
– This is the constructor for the Colour class.
– It should assign the passed in red, green and blue values to the corresponding member
variables.
• +∼Colour()
– This is the destructor for the Colour class.
– There is no dynamic memory to deallocate, therefore it can be left blank.
• +getRed() : int
– This is a get method for the red member variable.
– It should return the red member variable.
• +getGreen() : int
– This is a get method for the green member variable.
– It should return the green member variable.
• +getBlue() : int
– This is a get method for the blue member variable.
– It should return the blue member variable.
• +operator+(other : const Colour&) : Colour
– This is a method used to combine the RGB values of two colours.
5– It should return a new colour where the RGB values are obtained using the following
formula: value+otherV alue
2
.
• +operator-(other : const Colour&) : Colour
– This is a method used to combine the RGB values of two colours.
– It should return a new colour where the RGB values are obtained using the following
formula: |value−otherV alue|
2
.
• +operator+=(other : const Colour&) : Colour&
– This is a method used to update the RGB values of a single colour by mixing it with
another colour.
– It should add the result of the following formula to the current RGB values of the colour:
value+otherV alue
2
.
– It is important that if one of the RGB values exceed 255 that it should be set to 255.
• +operator-=(other : const Colour&) : Colour&
– This is a method used to update the RGB values of a single colour by mixing it with
another colour.
– It should subtract the result of the following formula to the current RGB values of the
colour: |value−otherV alue|
2
.
• +operator*(ratio : double) : Colour
– This is a method used to create a new colour by multiplying the RGB values of a single
colour with a ratio.
– It is important that if one of the RGB values exceed 255 that it should be set to 255.
• +operator==(rhs : const Colour&) : bool
– This is a method used to return true if the RGB values of to colours are equal.
– It should return false if not.
4.2 Mixer
The mixer class simulates a paint palette, that is used by painters to mix colours.
4.2.1 Members
• -palette: Colour[10]
– This member variable that contains the different colours on the palette.
– It is an array of colours with a fixed size of 10.
– Each index of the array correspond to a colour on the palette.
64.2.2 Functions
• +Mixer(red : int, green : int, blue : int)
– This is the constructor for the Mixer class.
– It takes three integer parameter, that represent the RGB values of a default colour for the
colour palette.
– It populates the palette array.
– The colours in the palette at an even index should be initialised to white (All of the RGB
values must be 255).
– The colours in the palette at an odd index should be initialised to a colour with the passed
in RGB values.
• +∼Mixer()
– This is the destructor for the Mixer class.
– There is no dynamic memory to deallocate, therefore it can be left blank.
• +getPalette() : Colour *
– This is the get method for the palette member variable.
– It should return the palette array.
• +addColour(index : int, colourToAdd : const Colour&) : bool
– This method is used to add a colour to the specified index of the palette.
– If the colour at that index is white, it should be set to the passed in colour (colourToAdd).
– If the colour it not white, the operator+= of the colour class should be used to mix the
colour at the specified index with the passed in colour.
– Remember to check if the passed in index is valid.
– If the operation was succesful it should return true and false otherwise.
• +getColour(index : int) : Colour
– This method is used to get the colour at the specified index of the palette.
– Remember to check if the passed in index is valid.
– If it is, the colour at that index should be returned.
– If it is not, a ”special” invalid colour should be returned with all the RGB values equal to
-1.
• +displayPalette() : string
– This method is used to display each of the colours of the palette.
– It should return a string of the following format:
7Colour index : Red : red Green : green Blue : blue 1
– At the end of each colour, a newline should be added.
– The index, is the index of the colour in the palette.
– red, green and blue correspond to the member variables of the Colour class.
• +mixTwo(colour1 : int, colour2 : int) : bool
– This method is used to mix the two colours at the specified indexes using the operator+
and operator- of the colour class.
– The colour at the colour1 index should be set to that colour + the colour at the colour2
index.
– The colour at the colour2 index should be set to that colour - the newly set colour at the
colour1 index.
– Remember to check if the passed in indexes are valid. If not it should return false.
– If the operation was successful, it should return true.
• +mixRatio(colour : int, ratio : double) : bool
– This method is used to adjust the colour at the specified index by the specified ratio.
– It should make use of the operator* of the Colour class.
– The current colour’s RGB values at the colour1 index should be updated to that colour *
ratio.
– Remember to check if the passed in index is valid. If not it should return false.
– If the operation was successful, it should return true.
• +operator+=(coloursToMix : const Colour[10]) : Mixer&
– This method is used to mix the colours of the palette with the passed in colours.
– Each colour of the passed in array should be mixed with the colour at the corresponding
index of the colour palette.
– The += operator should be used to update each colour of the palette.
• +operator+(other : const Mixer) : Mixer&
– This method is used to combine the colour palettes of two mixers.
– Each colour at an even index should be set to that colour + the corresponding colour of
the other mixer.
– Each colour at an odd index should be set to that colour - the corresponding colour of the
other mixer.
• +operator*=(ratio : double) : Mixer&
8– This method is used to adjust all the colours in the palette by the specified ratio.
– It should make use of the operator* of the Colour class.
– The current colour’s RGB values should be updated to that colour * ratio.
5 Testing
As testing is a vital skill that all software developers need to know and be able to perform daily, 10%
of the assignment marks will be allocated to your testing skills. To do this, you will need to submit
a testing main (inside the main.cpp file) that will be used to test an Instructor Provided solution.
You may add any helper functions to the main.cpp file to aid your testing. In order to determine
the coverage of your testing the gcov 1
tool, specifically the following version gcov (Debian 8.3.0-6)
8.3.0, will be used. The following set of commands will be used to run gcov:
g ++ -- coverage *. cpp -o main 1
./ main 2
gcov -f -m -r -j $ { files } 3
This will generate output which we will use to determine your testing coverage. The following
coverage ratio will be used:
number of lines executed
number of source code lines
We will scale this ration based on class size.
The mark you will receive for the testing coverage task is determined using Table 1:
Coverage ratio range % of testing mark
0%-5% 0%
5%-20% 20%
20%-40% 40%
40%-60% 60%
60%-80% 80%
80%-100% 100%
Table 1: Mark assignment for testing
Note the top boundary for the Coverage ratio range is not inclusive except for 100%. Also, note
that only the functions stipulated in this specification will be considered to determine your testing
mark. Remember that your main will be testing the Instructor Provided code and as such, it can
only be assumed that the functions outlined in this specification are defined and implemented.
As you will be receiving marks for your testing main, we will also be doing plagiarism
checks on your testing main.
1For more information on gcov please see https://gcc.gnu.org/onlinedocs/gcc/Gcov.html
96 Implementation Details
• You must implement the functions in the header files exactly as stipulated in this specification.
Failure to do so will result in compilation errors on FitchFork.
• You may only use c++98.
• You may only utilize the specified libraries. Failure to do so will result in compilation errors
on FitchFork.
• Do not include using namespace std in any of the files.
• You may only use the following libraries:
– string
– cmath
– sstream
– iostream
• You are supplied with a trivial main demonstrating the basic functionality of this assessment.
7 Upload Checklist
The following c++ files should be in a zip archive named uXXXXXXXX.zip where XXXXXXXX is
your student number:
• colour.h
• colour.cpp
• mixer.h
• mixer.cpp
• main.cpp
• Any textfiles used by your main.cpp
• testingFramework.h and testingFramework.cpp if you used these files.
The files should be in the root directory of your zip file. In other words, when you open your zip file
you should immediately see your files. They should not be inside another folder.
108 Submission
You need to submit your source files on the FitchFork website (https://ff.cs.up.ac.za/). All
methods need to be implemented (or at least stubbed) before submission. Your code should be able
to be compiled with the following command:
g ++ *. cpp -o main 1
and run with the following command:
./ main 1
Remember your h file will be overwritten, so ensure you do not alter the provided h files.
You have 10 submissions and your best mark will be your final mark. Upload your archive to
the Practical 2 slot on the FitchFork website. Submit your work before the deadline. No late
submissions will be accepted!
9 Accessibility
1 Show the class diagram of the two classes to be implemented in this practical:
• Colour
• Mixer
The member variables and functions are discussed in Section 4. The following relationships exists
between the Colour and Mixer class:
• Mixer has a relationship with Colour, because of the palette member variable.





請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp












 

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代寫COMP3702、代做Python編程語言
  • 下一篇:陽江市C++信奧陳老師 CSP-j/s信奧賽老師
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評 開團(tuán)工具
    出評 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場巴士4號線
    合肥機(jī)場巴士4號線
    合肥機(jī)場巴士3號線
    合肥機(jī)場巴士3號線
    合肥機(jī)場巴士2號線
    合肥機(jī)場巴士2號線
    合肥機(jī)場巴士1號線
    合肥機(jī)場巴士1號線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                久久久久久久av麻豆果冻| 五月天激情综合网| 蜜桃视频一区二区| 精品88久久久久88久久久| 2022国产精品视频| 国产成人免费9x9x人网站视频| 欧美肥妇bbw| 风间由美中文字幕在线看视频国产欧美| 性做久久久久久久久| 欧美日韩在线三区| 婷婷丁香激情综合| 亚洲综合一区二区三区| 日韩一级欧美一级| 国产精品亚洲专一区二区三区| 奇米综合一区二区三区精品视频| 亚洲男人的天堂在线观看| 7777精品久久久大香线蕉| 91蜜桃免费观看视频| 成人一区在线看| 国产精品一级片| 亚洲精品免费在线观看| 欧美mv和日韩mv国产网站| 亚洲v精品v日韩v欧美v专区| 国产精品一区二区无线| 精品一区二区三区av| 亚洲制服丝袜在线| 日日夜夜精品视频天天综合网| 精品在线播放免费| 亚洲综合丁香婷婷六月香| 欧美精品一区二区在线观看| 91精品国产日韩91久久久久久| 欧美一区日韩一区| xnxx国产精品| 26uuu另类欧美亚洲曰本| 国产精品久久网站| 91麻豆文化传媒在线观看| 日本不卡123| 国产在线日韩欧美| 岛国精品在线观看| 中文在线一区二区| 久久国产麻豆精品| 国产成人亚洲综合a∨猫咪| 粉嫩欧美一区二区三区高清影视| eeuss国产一区二区三区| 性欧美疯狂xxxxbbbb| 日韩精品一二三区| 99久久er热在这里只有精品15| 欧美日韩aaa| 视频一区中文字幕| 51久久夜色精品国产麻豆| 91美女精品福利| 亚洲国产精品综合小说图片区| 久久超碰97人人做人人爱| 亚洲一区二区三区激情| 亚洲色图视频免费播放| 男男视频亚洲欧美| 色8久久精品久久久久久蜜| 日韩欧美国产一二三区| 久久久精品tv| 亚洲一区欧美一区| 国产高清成人在线| 国产欧美综合在线| 国产精品第五页| 国产成人亚洲综合a∨猫咪| 正在播放亚洲一区| 午夜精品在线视频一区| 91福利小视频| 亚洲一区国产视频| 欧美日韩视频在线第一区| 亚洲视频中文字幕| 波多野结衣中文字幕一区| 欧美国产乱子伦| 成人app网站| 亚洲色图欧美偷拍| 94-欧美-setu| 一二三区精品视频| 成人国产精品免费网站| 亚洲成人三级小说| 26uuu欧美| 欧美日韩另类一区| 久久99在线观看| 91精品国产色综合久久不卡电影 | 色哟哟欧美精品| 国产成人av影院| 中文字幕亚洲欧美在线不卡| 国产目拍亚洲精品99久久精品 | 91精品国产免费久久综合| 在线观看视频一区二区欧美日韩| 欧日韩精品视频| 久久精品一区二区| 久久综合色8888| 综合电影一区二区三区 | 日韩免费成人网| 日本一区二区三级电影在线观看 | 91精品国产综合久久小美女| eeuss国产一区二区三区| 激情亚洲综合在线| 国内精品在线播放| 极品少妇xxxx精品少妇| 久久99热这里只有精品| 毛片不卡一区二区| 麻豆精品一区二区综合av| 午夜视频在线观看一区二区三区| 亚洲精品高清在线| 亚洲精品少妇30p| 午夜精品久久久久久久蜜桃app| 伊人性伊人情综合网| 亚洲制服丝袜av| 久88久久88久久久| 成人激情午夜影院| 在线看一区二区| 日韩美一区二区三区| 99精品黄色片免费大全| 日本一区二区在线不卡| 九一久久久久久| 欧美精品一区视频| 成人一区二区三区中文字幕| 在线观看一区二区精品视频| 777午夜精品免费视频| 精品88久久久久88久久久| 欧美成人精精品一区二区频| 成人午夜av在线| 国产精品一二三四区| 国产尤物一区二区在线| 国产精品综合网| www.日韩大片| 国产主播一区二区三区| 成人午夜在线免费| 91理论电影在线观看| 美国欧美日韩国产在线播放| 韩国三级在线一区| 国产成人高清视频| 欧美成人一区二区三区| 91麻豆精品国产91久久久更新时间| 欧美图区在线视频| 色菇凉天天综合网| 欧美va在线播放| 一区二区久久久| 激情av综合网| 在线观看视频一区二区欧美日韩| 国产精品少妇自拍| 国产成人综合网站| 国产亚洲精品免费| 韩国三级中文字幕hd久久精品| 欧美日韩国产另类一区| 午夜精品久久久久久久久久久| 99久久精品久久久久久清纯| 日本一区二区三区免费乱视频| 国产美女主播视频一区| 亚洲精品一区二区三区精华液| 美女高潮久久久| 精品日韩在线一区| 成人免费高清在线| 国产精品第一页第二页第三页| 成人激情黄色小说| 亚洲综合免费观看高清完整版在线| 色嗨嗨av一区二区三区| 亚洲观看高清完整版在线观看| 欧美狂野另类xxxxoooo| 激情文学综合丁香| 色偷偷88欧美精品久久久| av网站免费线看精品| 国产精品亚洲视频| 亚洲国产精品二十页| av在线播放一区二区三区| 一区二区三区在线影院| 精品久久久久久久人人人人传媒| 韩国三级电影一区二区| 亚洲欧洲av另类| 欧美xxxxx牲另类人与| 亚洲精品国产无天堂网2021| 一区二区三区资源| 亚洲国产一区二区a毛片| 免费观看在线综合色| 麻豆精品蜜桃视频网站| 不卡一卡二卡三乱码免费网站| 91美女片黄在线观看| 91精品在线一区二区| 久久综合九色综合97婷婷女人 | 中文字幕第一区二区| 亚洲国产精品影院| 成人免费观看视频| 日韩午夜在线播放| 亚洲精品日韩综合观看成人91| 麻豆精品国产91久久久久久| 色综合天天综合狠狠| 国产欧美中文在线| 青娱乐精品视频在线| 欧美色图免费看| 亚洲精品国产成人久久av盗摄| 日产欧产美韩系列久久99| 色综合av在线| 国产精品拍天天在线| 韩国理伦片一区二区三区在线播放| 91成人看片片| 国产精品国产精品国产专区不蜜 | 国产不卡视频在线播放| 欧美r级电影在线观看| 偷拍日韩校园综合在线| 欧美午夜影院一区|