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

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

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 

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

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 wps 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品久久久久久久久久久久久 | 91精品在线影院| 国产在线久久久| 免费在线观看日韩视频| 黄在线观看网站| 国产综合免费视频| 国产精品夜间视频香蕉| 97精品伊人久久久大香线蕉| 91精品视频免费观看| 久久久中精品2020中文| 久草精品电影| 国产精品美女主播| 久久99青青精品免费观看| 一区二区三区在线观看www| 亚洲一区二区久久久久久久| 一区二区精品在线| 欧美一区二区三区电影在线观看 | 国自在线精品视频| 国产精品自拍网| 国产精品69久久久| 久久精品在线视频| 国产aⅴ夜夜欢一区二区三区| 亚洲国产精品综合| 欧美精品在线一区| 成人久久精品视频| 久久久久久久久久福利| 免费不卡在线观看av| 欧美激情区在线播放| 日本在线观看a| 国产在线观看欧美| 91国自产精品中文字幕亚洲| 日韩中文字幕在线观看| 免费不卡欧美自拍视频| 午夜在线视频免费观看| 欧美日韩国产精品一卡| 不卡视频一区二区三区| 久久精品电影网站| 中文字幕在线乱| 欧美一区视频在线| 97人人干人人| 国产精品久久久久久久久免费| 亚洲一区二区在线看| 日韩高清国产一区在线观看| 免费国产成人看片在线| 91免费看片在线| 国产精品三区在线| 亚洲a在线播放| 国产午夜福利100集发布| 国产成人精品av在线| 久久成人一区二区| 日韩欧美亚洲精品| 91精品国产91久久久久久吃药| 久久夜精品香蕉| 欧美做暖暖视频| 91精品国产免费久久久久久| 久久成人国产精品| 欧美福利精品| 久久久成人精品一区二区三区| 欧美理论片在线观看| 欧美日韩天天操| 久久国产欧美精品| 亚洲精品免费在线视频| 国产三级中文字幕| 久久人人爽人人爽人人片亚洲| 天天人人精品| 91久久久久久久一区二区| 欧美猛少妇色xxxxx| 好吊色欧美一区二区三区视频 | 久久久久久久久久久成人| 亚洲国产一区二区在线| 国语自产精品视频在免费| 久久精品ww人人做人人爽| 亚洲中文字幕无码中文字| 国产日韩在线免费| 久久不射电影网| 免费国产在线精品一区二区三区| 日韩专区在线观看| 日韩国产精品一区二区三区| 91精品国产高清自在线看超| 中文字幕无码精品亚洲35| 国产熟女高潮视频| 国产精品久在线观看| 欧美日韩亚洲一区二区三区在线观看| 久久国产手机看片| 日本国产中文字幕| 国产成人精品电影| 日本成人黄色| 精品国产美女在线| 欧美日韩视频免费在线观看 | 国产成人小视频在线观看| 日本免费a视频| 国产成人精品国内自产拍免费看| 视频一区二区视频| 久99久在线| 欧美视频免费播放| 久久艳片www.17c.com| 国产在线观看欧美| 一区二区三区四区不卡| 97久久精品国产| 亚洲欧洲国产日韩精品| 7777精品伊久久久大香线蕉语言| 视频一区亚洲| 日韩亚洲一区二区| 国内一区在线| 久久久久成人网| 91av免费看| 日韩不卡av| 久久精品免费播放| 国产欧美亚洲日本| 日韩在线电影一区| 日韩中文在线视频| 国内揄拍国内精品少妇国语| 久操成人在线视频| 91精品国产乱码久久久久久蜜臀 | 一区二区欧美日韩| 国产精华一区二区三区| 日本亚洲欧洲色α| 国产精品秘入口18禁麻豆免会员| 国产亚洲精品网站| 亚洲精品自在在线观看| 成人精品视频99在线观看免费| 日韩在线视频在线观看| 精品国内产的精品视频在线观看| 精品视频一区二区三区四区| 免费91麻豆精品国产自产在线观看| 高清欧美精品xxxxx| 色综合av综合无码综合网站| 久久精品国产欧美激情| 国产精品在线看| 日韩国产精品一区二区三区| 国产精品极品美女在线观看免费| 97精品一区二区视频在线观看| 欧美中文在线免费| 中文字幕色呦呦| 精品国产一区二区三区在线观看 | 精品婷婷色一区二区三区蜜桃| 亚洲欧美日韩不卡一区二区三区 | 美女国内精品自产拍在线播放| 91精品国产沙发| 免费在线观看一区二区| 亚洲资源在线看| 国产精品日韩在线一区| 91精品国产高清久久久久久| 黄色免费观看视频网站| 午夜伦理精品一区| 国产精品夫妻激情| 国产va免费精品高清在线观看| 国产一级片91| 国产精品99久久久久久久久 | 久99久视频| 91精品黄色| 国产人妻互换一区二区| 欧美亚洲国产成人| 日本在线观看一区| 亚洲区成人777777精品| 久久成人一区二区| 久久久精品一区二区三区| 国产成人综合亚洲| 7777免费精品视频| 国产精品永久免费视频| 国产在线视频欧美一区二区三区| 人人妻人人做人人爽| 亚洲精品女av网站| 久久91精品国产| 日韩av电影国产| 亚洲一区免费看| 国产99久久九九精品无码| 久热精品视频在线| 久久久国产一区二区三区| 久久久久久www| 国产精品97在线| 91精品国产乱码久久久久久蜜臀| 国产精品一区而去| 国产欧美久久久久久| 国产香蕉一区二区三区| 黄色一级大片免费| 欧美日韩亚洲一区二区三区四区| 日本高清不卡一区二区三| 日韩尤物视频| 亚洲欧美日韩不卡| 亚洲中文字幕无码专区| 综合操久久久| 亚洲一区精彩视频| 久操成人在线视频| 在线观看日本一区| 亚洲乱码国产一区三区| 亚洲欧美日韩国产成人综合一二三区| 精品国偷自产一区二区三区| 久久成人这里只有精品| 美女av一区二区| 欧美精品九九久久| 亚洲一区高清| 亚洲精品欧美一区二区三区| 亚洲激情一区二区三区| 又大又硬又爽免费视频| 亚洲一区二区在线免费观看| 日韩一级片一区二区| 日韩视频在线免费播放| 欧美一级大片在线观看| 黄瓜视频免费观看在线观看www|