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

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

SEHH2042代做、代寫C++編程設計

時間:2024-03-15  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



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 

掃一掃在手機打開當前頁
  • 上一篇:代寫COMP9315、代做SQL編程語言
  • 下一篇:SEHH2042代做、代寫C++編程設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

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

          9000px;">

                一二三区精品福利视频| 国产日产精品一区| 在线免费观看日本欧美| 精品sm捆绑视频| 亚洲第一二三四区| 国产欧美一区二区在线| 国产欧美精品一区二区色综合朱莉| 欧美一区二区免费| 久久久午夜精品| 亚洲最快最全在线视频| 亚洲一级二级三级在线免费观看| 亚洲国产色一区| 国产成人精品免费视频网站| 色老汉av一区二区三区| 日韩美女主播在线视频一区二区三区| 精品国产一区a| 亚洲成人资源在线| av在线不卡观看免费观看| 精彩视频一区二区三区| 在线区一区二视频| 久久免费看少妇高潮| 亚洲国产三级在线| jizzjizzjizz欧美| 精品国产3级a| 毛片av中文字幕一区二区| 欧美在线free| 亚洲欧美日本在线| 91亚洲永久精品| 国产精品视频看| 一个色妞综合视频在线观看| 99v久久综合狠狠综合久久| 久久这里只有精品6| 精品制服美女久久| 精品88久久久久88久久久| 日韩电影一区二区三区四区| 欧美日韩美少妇| 性感美女久久精品| 欧美日韩一区不卡| 日韩激情视频在线观看| 日韩欧美美女一区二区三区| 久久99精品久久久| 国产精品久久久久久久久搜平片| 丰满少妇久久久久久久| 一区二区三区精品| 91精品国产综合久久香蕉麻豆| 久久精品av麻豆的观看方式| 国产欧美精品区一区二区三区| 一本到不卡精品视频在线观看 | 精品久久久久久无| av在线综合网| 石原莉奈在线亚洲三区| 欧美va亚洲va在线观看蝴蝶网| 久久精品国产一区二区三区免费看| 国产麻豆视频精品| 久久先锋影音av鲁色资源| 国产成人在线网站| 亚洲国产精品精华液ab| 不卡区在线中文字幕| 亚洲高清一区二区三区| 欧美三区免费完整视频在线观看| 婷婷久久综合九色国产成人| 欧美丰满嫩嫩电影| av资源站一区| 另类小说色综合网站| 国产精品你懂的在线欣赏| 奇米影视7777精品一区二区| 国产免费观看久久| 6080yy午夜一二三区久久| 国产在线精品一区二区夜色| 一级特黄大欧美久久久| 国产亚洲视频系列| 日韩视频一区二区三区在线播放| 99re这里都是精品| 成人的网站免费观看| 久久综合五月天婷婷伊人| 欧美性受极品xxxx喷水| 久久久美女毛片| 欧美日韩精品三区| 日本欧美一区二区三区乱码| 亚洲国产高清aⅴ视频| 久久午夜电影网| 精品久久一区二区三区| 精品久久久久av影院 | 成人国产精品免费观看| 亚洲亚洲人成综合网络| 中文在线一区二区| 国产日韩欧美一区二区三区综合| 日韩视频永久免费| 欧美xingq一区二区| 欧美日韩一区二区在线观看| 精品污污网站免费看| 欧美日韩激情一区| 欧美一区二区三区视频| 91精品视频网| 国产精品丝袜91| 亚洲va在线va天堂| 夜夜操天天操亚洲| 色婷婷国产精品久久包臀| 国产日产精品一区| 一二三四社区欧美黄| 国产成人午夜精品5599| 日韩精品资源二区在线| 美美哒免费高清在线观看视频一区二区| 国产精品99久久久久久有的能看| 精品综合免费视频观看| 一本久久a久久精品亚洲| 在线观看日韩一区| 国产日产欧美一区| 成人欧美一区二区三区白人| 亚洲综合色丁香婷婷六月图片| 国产精品三级视频| 99久久精品国产精品久久| 成人午夜av电影| 色嗨嗨av一区二区三区| 精品免费一区二区三区| 午夜精品一区二区三区电影天堂 | 亚洲一区二区三区美女| 麻豆精品视频在线| 欧美日韩一区二区三区免费看| 欧美亚洲国产一区二区三区va | 丝瓜av网站精品一区二区 | 一区二区免费在线播放| 美腿丝袜亚洲三区| 欧美日韩国产三级| 亚洲一区二区在线免费看| 国产成人精品三级| 久久精品欧美一区二区三区麻豆 | 欧美一区二区三区免费观看视频 | www.性欧美| 精品久久人人做人人爰| 日日夜夜免费精品视频| 欧美性猛交xxxx乱大交退制版| 亚洲视频你懂的| 91伊人久久大香线蕉| 一区二区三区蜜桃| 日韩精品一区二区三区老鸭窝 | 精品一区二区在线免费观看| 欧美亚洲综合久久| 国产在线精品一区在线观看麻豆| 国产精品天干天干在线综合| 欧美日韩电影在线| 亚洲777理论| 欧美精品一区在线观看| 国模娜娜一区二区三区| 国产精品久久久久婷婷二区次| 成人午夜短视频| 五月激情综合网| 国产女人18水真多18精品一级做| 91视频免费观看| 久久99精品网久久| 亚洲伊人色欲综合网| 欧美精品一区二区精品网| 一本久道久久综合中文字幕| 亚洲超丰满肉感bbw| 欧美激情在线观看视频免费| 欧美日韩免费观看一区三区| 国产一区二区导航在线播放| 三级欧美韩日大片在线看| 国产欧美精品一区aⅴ影院 | 日韩一级片网站| 丰满亚洲少妇av| 国产一区二区三区四| 免费观看在线综合| 亚洲黄色免费网站| 一区二区三区四区五区视频在线观看| 日韩欧美成人激情| 91精品欧美福利在线观看| 在线免费观看日韩欧美| 欧美最新大片在线看| 欧美天天综合网| 高清视频一区二区| 成人永久免费视频| 黄色资源网久久资源365| 国产曰批免费观看久久久| 91丨九色丨黑人外教| 日韩精品专区在线影院重磅| 国产精品素人视频| 国产一区二区免费视频| 91电影在线观看| 国产三级一区二区三区| 日本不卡免费在线视频| 色综合天天综合网天天狠天天| 国产婷婷一区二区| 国产一区二区三区精品视频 | 国产日产欧美一区二区视频| 天使萌一区二区三区免费观看| 成人高清视频免费观看| 久久久99久久精品欧美| 玖玖九九国产精品| 久久先锋资源网| 韩国成人精品a∨在线观看| 日韩一二三区视频| 亚洲图片有声小说| 色婷婷亚洲综合| 玉足女爽爽91| 91日韩一区二区三区| 亚洲视频在线一区| 91污片在线观看| 亚洲第一在线综合网站| 欧美性大战久久久|