Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C++ program for the following question. Each student will have a set of (a, b, c, d, and mode) parameters. Calculate your set

Write a C++ program for the following question.

Each student will have a set of (a, b, c, d, and mode) parameters. Calculate your set of parameters using the following information. The alphabet is numbered - a=1, b=2, c=3, ... m=13 n=13, o=12, p=11, ... z=1

Using the first 5 letters of your surname (repeat the last letter if less than 5) the parameters are calculated as follows : Parameter Example (James Herd) a = first letter * 100S a = h * 100S = 8 * 100S = 800S b = second letter * 100S b = e * 100S = 5 * 100S = 500S c = third letter + 4 c = r + 4 = 9 + 4 = 13 d = fourth letter * 500S d = d * 500S = 4 * 500S = 2.0mS mode = remainder (fifth letter/4) +1 mode = rem(d / 4) +1 = rem(4 / 4) +1 =1 Therefore James Herd would be given the parameter set 800S, 500S, 13, 2.0mS and mode 1. The rem function is the integer division REMAINDER function, i.e. the remainder when the numerator is divided by the denominator. E.g. rem (10/3) = 1.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Essential SQLAlchemy Mapping Python To Databases

Authors: Myers, Jason Myers

2nd Edition

1491916567, 9781491916568

More Books

Students also viewed these Databases questions

Question

What is Constitution, Political System and Public Policy? In India

Answered: 1 week ago

Question

What is Environment and Ecology? Explain with examples

Answered: 1 week ago