首页
编程语言
数据库
网络开发
Algorithm算法
移动开发
系统相关
金融统计
人工智能
其他
首页
>
> 详细
辅导R、SAS讲解留学生、辅导SPSS设计、R讲解、讲解Stata报告 调试C/C++编程|调试Matlab程序
[HW-01] Square root approximation
1. Description
The square root of a number N can be approximated by repeated calculation using the formula:
NG = 0.5(LG + N/LG)
where
NG = next guess
LG = last guess
Write a function that calculates the square root of a number using this method. The initial
guess will be the starting value of LG = 1.0. The program needs to calculate a value of NG using
the given formula. It is considered to be the root is found when |NG-LG| < 0.005. In this case
NG is accepted as the square root: otherwise, the new guess (NG) becomes the last guess (LG)
and the process is repeated.
2. Output
Check the validity of all input values as shown in
.
※ note: Gray colored background area is where the user needs to input
Enter a number to find the square root value (0.01 ~ 1000000.00) : 4.0
Square root of 4.00 is : 2.000
Enter C/c for continue or Q/q for quit : C
Enter a number to find the square root value (0.01 ~ 1000000.00) : 5
Square root of 5.00 is : 2.336
Enter C/c for continue or Q/q for quit : Q
Program Terminating. Bye!
Enter a number to find the square root value (0.01 ~ 1000000.00) : 0
Not a valid number. Try again.
Enter a number to find the square root value (0.01 ~ 1000000.00) : 0.75
Square root of 0.75 is : 0.866
Enter C/c for continue or Q/q for quit : Q
Program Terminating. Bye!
2 / 6
3. Output Guidelines
1) Display a friendly message to explain the program.
2) Display a friendly message to receive input from user.
3) Display a friendly message for the invalid inputs.
4) Define macros as needed
5) Leave a space line after receiving the inputs and before the result is displayed.
6) Follow the format of the outputs shown in
and
.
When the inputs needs to be read several times in the program, there could be a input buffer issue that will
cause some trouble reading the input.
Use fflush() in the
or define a macro FLUSH in your program as below and use this before a new
input is read:
#define FLUSH while (getchar() != ‘\n’)
fflush() or FLUSH macro will empty the previous input line so that another input can read from a new input
line.
3 / 6
[HW-02] Prime Fibonacci number
1. Description
Write a program that checks whether the nth Fibonacci number is prime. Main function should call two subfunctions
to accomplish this task: one to find nth Fibonacci number and another one to find whether the
number is prime number.
2. Output
Check the validity of all input values as shown in
.
※ note: Gray colored background area is where the user needs to input
Enter a number to find whether nth Fibonacci number is prime (3 ~ 20) : 3
Fibonacci (3) = 3 is a prime number.
Enter C/c for continue or Q/q for quit : C
Enter a number to find whether nth Fibonacci number is prime (3 ~ 20) : 5
Fibonacci (5) = 8 is not a prime number.
Enter C/c for continue or Q/q for quit : Q
Program Terminating
Enter a number to find whether nth Fibonacci number is prime (3 ~ 20) : 2
Not a valid number. Try again.
Enter a number to find whether nth Fibonacci number is prime (3 ~ 20) : 5
Fibonacci (5) = 8 is not a prime number.
Enter C/c for continue or Q/q for quit : Q
Program Terminating
3. Output Guidelines
1) Display a friendly message to explain the program.
2) Display a friendly message to receive input from user.
4 / 6
3) Display a friendly message for the invalid inputs.
4) Leave a space line after receiving the inputs and before the result is displayed.
5) Follow the format of the outputs shown in
and
.
5 / 6
[HW-03] N Locker door problem
1. Description
N students are assigned lockers 1 through N. The student assigned to locker number 1 closes all N
lockers. The student assigned to locker number 2 then opens all lockers whose numbers are
multiples of 2. The student assigned to locker number 3 changes the status of all lockers whose
numbers are multiples of 3 (e.g. locker number 3, which is open gets closed, locker number 6, which
is closed, gets opened). The student assigned to locker number 4 changes the status of all locker
whose numbers are multiples of 4, and so on for all N lockers.
Write a program that read input N, process door alteration as described, and display the results as
shown in the output examples.
2. Output
Check the validity of the input value as shown in
.
※ note: Gray colored background area is where the user needs to input
Enter a number of lockers (1 ~ 1000): 5
Door 1 closed
Door 4 closed
There are 3 lockers open and 2 lockers closed.
Enter C/c for continue or Q/q for quit : C
Enter a number of lockers (1 ~ 1000): 10
Door 1 closed
Door 4 closed
Door 9 closed
There are 7 lockers open and 3 lockers closed.
Enter C/c for continue or Q/q for quit : Q
Program Terminating
6 / 6
Enter a number of lockers (1 ~ 1000): 0
Invalid input. Try again.
Enter a number of lockers (1 ~ 1000): 5
Door 1 closed
Door 4 closed
There are 3 lockers open and 2 lockers closed.
Enter C/c for continue or Q/q for quit : Q
Program Terminating
3. Output Guidelines
1) Display a friendly message to explain the program.
2) Display a friendly message to receive input from user.
3) Display a friendly message for the invalid inputs.
4) Leave a space line after receiving the inputs and before the result is displayed.
5) Follow the format of the outputs shown in
and
联系我们
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-21:00
微信:codinghelp
热点文章
更多
辅导 comm2000 creating socia...
2026-01-08
讲解 isen1000 – introductio...
2026-01-08
讲解 cme213 radix sort讲解 c...
2026-01-08
辅导 csc370 database讲解 迭代
2026-01-08
讲解 ca2401 a list of colleg...
2026-01-08
讲解 nfe2140 midi scale play...
2026-01-08
讲解 ca2401 the universal li...
2026-01-08
辅导 engg7302 advanced compu...
2026-01-08
辅导 comp331/557 – class te...
2026-01-08
讲解 soft2412 comp9412 exam辅...
2026-01-08
讲解 scenario # 1 honesty讲解...
2026-01-08
讲解 002499 accounting infor...
2026-01-08
讲解 comp9313 2021t3 project...
2026-01-08
讲解 stat1201 analysis of sc...
2026-01-08
辅导 stat5611: statistical m...
2026-01-08
辅导 mth2010-mth2015 - multi...
2026-01-08
辅导 eeet2387 switched mode ...
2026-01-08
讲解 an online payment servi...
2026-01-08
讲解 textfilter辅导 r语言
2026-01-08
讲解 rutgers ece 434 linux o...
2026-01-08
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 99515681 微信:codinghelp
© 2024
www.7daixie.com
站长地图
程序辅导网!