国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

SEHH2042代做、代寫C++編程設(shè)計(jì)

時(shí)間:2024-03-15  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



SEHH2042 23/24 Semester Two – Individual Assignment 1 Page 1
SEHH2042 Computer Programming
Individual Assignment 1
Submission deadline: 23:59, 13 Mar 2024 (Wednesday)
Expected Learning Outcomes
 Develop computer programs in one or more high level language programming environment.
 Design and develop structured and documented computer programs.
 Integrate the computer programming techniques to solve practical problems.
Introduction
This is an individual assignment. There are 2 parts:
Criteria % of marks
ShowInfo 10
Questions 1 to 3 **
You are given a C++ program template file called A1Template.cpp. You are required to insert
C++ codes into the template file according to the given instructions. The final file (your
submission) will be a complete C++ program, which can be compiled and executed
successfully and is able to satisfy all the requirements in this specification.
Instruction
 For each question, you only need to do either odd or even version based on the stated rule
about your student ID number (0 is considered as even). You do not need to write any
program codes to check the student ID number to determine the version you should do.
 To answer the questions, you need to insert codes into the functions of the template file.
E.g., to answer question 1, write your code in the scope of Q1( ). When the program is
executed, enter the question number to run the code of a particular question.
 In each question, the program should first accept input(s) from user WITHOUT printing
any prompt messages (Hint: cin statements will be used, and there is NO output messages
like “Input n: ” before the cin statements).
 You may assume that user always provides valid input. NO error input checking is needed
unless it is required by the question.
 Follow EXACTLY the requirement as stated in the questions. Check the correctness of
your code by executing it before your submission. Test your program carefully by using
input test cases as stated in the sample display, as well as other necessary test cases you can
think of. Correct output with same output format as the sample display is expected.
 Marks are awarded based on the number of test cases that your program can successfully
pass without mistakes.
SEHH2042 23/24 Semester Two – Individual Assignment 1 Page 2
 You may include more header files and write user-defined functions to solve the questions.
E.g., you may write a user-defined function for solving question 1, and call it in the given
function Q1( ). (refer to “Using template file” on the last page)
 Apart from inserting codes as mentioned above, you are NOT allowed to modify any given
codes or the main function in the template file.
 IMPORTANT: Make sure that your submitted file CAN be opened and has NO syntax
error. It should be the source code, using .cpp as the file extension. Your submission should
NOT be other file types such as .zip or .sln.
ShowInfo (10%)
Insert your code in the showInfo function so that your personal particulars are displayed in the
following format when the program executes:
Sample display:
Name : XXX YYY ZZZ
Student ID: 23xxxxxxA
Class : B01A

SEHH2042 23/24 Semester Two – Individual Assignment 1 Page 3
Question 1 (30%)
Write a program to calculate the total fee of booking a meeting room. The fee calculation must
take into account the duration of the meeting, the number of attendees, and apply differential
pricing for peak hours and holidays. The program should accept the following user inputs in
exact order given below:
1. Number of persons attending the meeting
2. Start time of the booking (an hour value in 24-hour format)
3. End time of the booking (an hour value in 24-hour format)
4. Whether the booking date is a holiday (a character ‘y’ or ‘n’)
5. Whether the booking is made by a student (a character ‘y’ or ‘n’)
The program then calculates and prints the final booking fee according to the charging table
and the charging rules provided below.
Charging Table (in dollars)
Room Type Fee per hour
(Odd Version)
Fee per hour
(Even Version)
Small Room, for 1 to 6 attendees 50 58
Medium Room, for 7 to 12 attendees 98 102
Large Room, for 13 attendees or above 188 198
In this question, determine you should use either the odd or even version of this question by
referring to the 4th digit of your student ID number. For example, 235**631A uses even
version.
Charging Rules
 Input for the number of persons is always positive.
 The start time and end time of the booking are always between 0 and 23, and the end time
is always larger than the start time (i.e., the minimum booking duration is one hour).
 If the booking date is a holiday, a 50% surcharge on the fee per hour is added.
 If the booking is made by a student, a 10% discount on the final fee will be applied.
 If the booking time falls between peak hours, for the booking hours during the peak hours,
a 20% surcharge on the fee per hour is added.
Peak hours for ODD version: 0800 – 1700. Peak hours for EVEN version: 0**0 – 1800.
 If the booking duration is equal to or exceeds 4 hours, a 20% discount on the final fee will
be applied.
The final fee is calculated and displayed after all user inputs are received. Its value should be
displayed formatted to two decimal places.

SEHH2042 23/24 Semester Two – Individual Assignment 1 Page 4
Odd Version
Sample display
5
6
8
n
n
100.00
Sample display
15
10
15
y
y
1218.24
Sample display
8
15
19
n
y
310.46
Sample display
8
7
12
y
n
682.08
Sample display
12
18
22
n
n
313.60
Even Version
Sample display
5
6
8
n
n
116.00
Sample display
15
10
15
y
y
1283.04
Sample display
8
15
19
n
y
337.82
Sample display
8
7
12
y
n
685.44
Sample display
12
18
22
n
n
**6.40
IMPORTANT NOTE: You need to follow all text and order as shown in the sample display.
There should be NO prompt messages and NO additional blank lines in the output. DO NOT
add extra text in the output which will be considered as incorrect in marking.
SEHH2042 23/24 Semester Two – Individual Assignment 1 Page 5
Question 2 (30%)
Write a C++ program that calculates and displays the future value of a retail green bond
investment at the end of an investment period. The program should ask the user for two pieces
of information in an order given below (you can assume both inputs are always positive):
1. The initial investment amount (a double value)
2. The number of months the bond is kept (an integer value)
The program computes the future value of the bond investment, based on compound interest
and a bonus for long-term investments. A 5% bonus is added to the final value of bonds held
longer than 36 months. The program should compute the future value, added with bonus if any,
of the bond investment at the end of the investment period, and print it out in the format
rounded to the nearest dollar.
Use the following formula to calculate the future value (FV) of the investment:
FV ൌ PV ∗ ሺ1൅rሻ୬
FV = Future value of the investment after n compounding periods
PV = Initial investment amount
r = Annual interest rate divided by the number of compounding periods per year
n = Total number of compounding periods
In this question, use the 5th digit of your student ID number to determine odd or even
version.
5th digit of Student ID Annual Interest Rate Interest released
Odd 3.5% Every 4 months
Even 4.5% Every 6 months
Sample display (for odd)
50000
30
54229
Sample display (for odd)
80000
42
94331
Sample display (for even)
50000
30
55884
Sample display (for even)
80000
42
98157
IMPORTANT NOTE: You need to follow all text and order as shown in the sample display.
There should be NO prompt messages and NO additional blank lines in the output. DO NOT
add extra text in the output which will be considered as incorrect in marking.

SEHH2042 23/24 Semester Two – Individual Assignment 1 Page 6
Question 3 (30%)
Write a program that displays the patterns as shown below, according to the input size, which
determines the number of rows and columns in the pattern. You can assume the input integer
is always positive.
In this question, use the 6th digit of your student ID number to determine odd or even version.
Odd Version (odd 6th digit in student ID)
Sample display
Even Version (even 6th digit in student ID)
Sample display
More examples (Note the difference in the pattern required for an odd or even input)
Input Output (Odd Version) Output (Even Version)
IMPORTANT NOTE: You need to follow the spacing as shown in the sample display. There
is ONE blank space between adjacent asterisk (*) symbol along one line. There should be NO
prompt messages for the input size and NO additional blank lines in the output. DO NOT add
extra text in the output which will be considered as incorrect in marking.
SEHH2042 23/24 Semester Two – Individual Assignment 1 Page 7
Submission
You are required to insert your C++ code into the given template file, and submit the final
source file to Blackboard before the deadline. Use your student name and ID as the filename:
StudentID_Name.cpp. Remove all spaces, hyphens and other non-letter characters in the
filename. The correct filename should look like: 12345678A_ChanTaiMan.cpp.
Grading
Your program (i.e. the template file with your answers) will be executed by script with different
test cases in Microsoft Visual Studio using the Release setting. The tester will execute the
program and enter the question number in “Program Selection Menu” to test a particular
question. The program will be restarted for testing each question individually.
You need to follow EXACTLY the above input and output requirements. Any deviation from
the requirement is considered as incorrect and no mark is given for that test case.
Late submission: 100% deduction. No late submission is allowed. Submit your work to
Blackboard some time ahead of the deadline. Late submissions due to slow internet speed will
not be accepted.
Syntax error: 5% - 20% deduction depends on the seriousness of the syntax error. You will
get 0 mark if your program contains too many syntax errors. Check your final source file using
Microsoft Visual Studio (not those online compliers) carefully before submission.
Runtime error: No mark for the particular test case that triggers the runtime error (e.g. infinite
loop, divide by zero, etc.).
Logic error (bug): No mark for the particular test case that deviates from the requirement.
Note that a logic error may lead to failure in ALL test cases of a question, e.g. displaying
unnecessary messages, incorrect parameter values, incorrect number format, or incorrectly
decide the odd/even version, etc.
Ensure the originality of your work. Plagiarism in any form is highly prohibited.

SEHH2042 23/24 Semester Two – Individual Assignment 1 Page 8
Using template file
If you implement the questions in separated source files, you need to copy the program codes
into the template file for assignment submission. Make sure to test the final source file (i.e.
template file with your answers) in Microsoft Visual Studio before submission.
myQuestion1.cpp
#include <iostream>
#include <iomanip>
using namespace std;
void display(int n) {
cout << "This is appendix\n";
cout << "Display a number: " << setw(5) << n;
}
int main() {
int number = 1234;
display(number);
return 0;
}
Template.cpp
// Insert more header files when necessary
#include <iostream>
#include <iomanip>
using namespace std;
void showInfo()
{
// Insert your codes to display your personal particulars here
}
// Insert your function, class (if any) for Q1() here
void display(int n) {
cout << "This is appendix\n";
cout << "Display a number: " << setw(5) << n;
}
void Q1()
{
// Insert your codes for Question 1 here
int number = 1234;
display(number);
}
// ... the rest of the template file ...
1. The header files included in your program should also be included in the template file.
2. The user-defined function / class for a question should be copied before the question.
3. The program main body, except “return 0”, should be copied to the function body of the
corresponding question.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代寫COMP9315、代做SQL編程語言
  • 下一篇:SEHH2042代做、代寫C++編程設(shè)計(jì)
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手,多多出評軟件徽y1698861
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    91高清免费视频| 精品1区2区| 日韩欧美亚洲在线| 国产精品有限公司| 国产精品久久久久久久久久久新郎| 亚洲视频精品一区| 免费国产成人av| 久久精品99久久久久久久久 | 成人精品小视频| 麻豆国产va免费精品高清在线| 青青草免费在线视频观看| 91免费黄视频| 中文字幕一区二区三区乱码| 国产一区二区在线免费| 国产成人免费电影| 日韩国产高清一区| 国产经典一区二区| 亚洲7777| 97久久超碰福利国产精品…| 国模精品系列视频| 国产精品久久久久久久一区探花 | 国产精品老女人精品视频| 日本一区二区三区免费观看| 久久久亚洲欧洲日产国码aⅴ| 欧美激情一二区| 国产亚洲黄色片| 久久成人综合视频| 韩国一区二区三区美女美女秀| 久久久久久久久久婷婷| 日本中文字幕久久看| 久久影视中文粉嫩av| 午夜视频在线瓜伦| 亚洲精品国产一区| 麻豆91av| 午夜精品美女久久久久av福利 | 国产精品一二三在线| 日本一欧美一欧美一亚洲视频| 久久久精品2019中文字幕神马| 国产九色porny| 天天爱天天做天天操| 国产精品丝袜一区二区三区 | 国产日韩精品一区观看| 午夜精品一区二区三区在线观看| 久久九九国产精品怡红院| 国产免费黄色小视频| 日本在线成人一区二区| 欧美精品一二区| 91精品国产99久久久久久| 欧美亚洲国产视频小说| 精品久久一二三| av动漫免费看| 天堂av在线中文| 日韩中文字幕在线| 免费黄色福利视频| 亚洲影院色在线观看免费| 116极品美女午夜一级| 久久久久久久有限公司| 人妻精品无码一区二区三区 | 成人在线免费观看一区| 日韩精品在线视频免费观看| 欧美人与性动交a欧美精品| 久久久亚洲国产天美传媒修理工| 黄色小视频大全| 日韩av成人在线| 正在播放国产精品| 国产精品区二区三区日本| 91精品国产沙发| 国产日韩中文字幕| 7777免费精品视频| 永久免费看av| 久久久久久欧美精品色一二三四| 黄色高清无遮挡| 一区二区精品在线| www.xxxx欧美| 国产美女久久久| 日本一区二区高清视频| 精品国产一区av| 国产欧美亚洲精品| 国产在线播放91| 欧美精品自拍视频| 奇米888一区二区三区| 午夜精品久久久久久久无码 | 国内精品久久久| 国产精品国产精品国产专区蜜臀ah| 97精品国产97久久久久久粉红| 日本一区免费观看| 欧美精品在线看| 国产成人综合一区| 国产一区二区三区免费不卡| 亚洲高潮无码久久| 久久婷婷国产麻豆91天堂| 国产精品对白刺激| www.国产二区| 国产精品一区=区| 国产一区二区在线网站| 国产综合香蕉五月婷在线| 欧美日韩电影一区二区三区| 欧美综合在线观看视频| 欧洲在线视频一区| 欧美v在线观看| 视频一区二区视频| 中文字幕免费高| 国内成人精品一区| 欧美一级成年大片在线观看| 性欧美精品一区二区三区在线播放| 国产精品黄页免费高清在线观看 | 国产精品九九九| 国产精品美女av| 久久亚洲综合国产精品99麻豆精品福利| 国产精品入口福利| 国产精品福利小视频| 欧美巨大黑人极品精男| 欧美激情一级欧美精品| 欧美成人四级hd版| 亚洲最大成人网色| 亚洲三区在线| 中文字幕无码精品亚洲35 | 91.com在线| 国产精品直播网红| 国产日韩一区二区在线| 国内视频一区二区| 欧美成人精品免费| 欧美精品色婷婷五月综合| 日韩免费在线观看视频| 久久99精品久久久久久青青日本| 97碰在线观看| 久久久噜噜噜久久| 国产精品露脸自拍| 在线精品日韩| 一本一生久久a久久精品综合蜜| 亚洲国产精品日韩| 欧美交换配乱吟粗大25p| 欧美一区二区三区成人久久片| 性视频1819p久久| 日韩成人在线资源| 青青在线免费观看视频| 欧洲精品久久久| 欧美日韩国产免费一区二区三区| 欧洲精品在线播放| 欧美日本韩国国产| 国产精品日韩一区| 日韩在线视频免费观看| 国产精品久久久久久久久粉嫩av| 欧美精品999| 少妇免费毛片久久久久久久久| 欧美在线中文字幕| 国产精品一区久久| 国产成人精品免费久久久久| 国产精品久久久久一区二区| 亚洲一区二区中文字幕| 欧美性视频在线| 成人国产一区二区| 日韩在线观看精品| 一区二区三区av| 欧美极品色图| 91精品国产九九九久久久亚洲| 国产精品美女视频网站| 亚洲a∨一区二区三区| 狠狠噜天天噜日日噜| 91精品国产91久久久久福利| 在线视频精品一区| 韩日欧美一区二区| 久久精品日韩精品| 一区二区三区四区视频在线观看| 久久全国免费视频| 国产精品一区在线免费观看| 国产福利视频一区| 国产精品久久久久久久app | 国产一区二区网| 久久久一二三四| 国产精品露脸av在线| 亚洲欧洲精品在线观看| 日韩精品―中文字幕| 国产一区二区视频在线观看| 91久久大香伊蕉在人线| 久久久久久久97| 宅男一区二区三区| 青青成人在线| 91美女福利视频高清| 久久天天躁狠狠躁老女人| 在线视频不卡一区二区三区| 青青久久av北条麻妃黑人| 国产精品一区二区三区久久久 | 国产精品视频永久免费播放| 中文字幕日韩精品无码内射| 日韩精品手机在线观看| 国产女教师bbwbbwbbw| 国产成人精品视| 精品国产电影| 青青在线免费观看视频| 99视频免费观看蜜桃视频| 久久精品国产欧美亚洲人人爽| 影音先锋欧美在线| 欧美二区三区在线| 久久这里只有精品23| 欧美精品一区二区三区国产精品| 日本精品一区二区三区不卡无字幕| 欧美日韩视频免费| 91免费版看片| 久久99国产综合精品女同|