Sentinel Controlled While Loop C++

  1. Flag Controlled Loop

Sentinel - value while (read) loop. General form read initial value while value read is not the sentinel value process the value read next value end while loop e.g. Problem: The user is prompted to enter the item price. When all prices have been entered, the total is calculated, tax is added and a total amount due is printed to the screen.

  1. A sentinel-controlled while loop is an event-controlled while loop whose termination depends on a special value. True The fourth number in a Fibonacci sequence is found by taking the sum of the previous two numbers in the sequence.
  2. Sentinel-Controlled WHILE Loop An event-controlled while loop may use a special data value, sentinel, in conjunction with the logical expression to signal the loop exit. As long as the sentinel value does not meet the logical expression (specified data value), the loop is executed.
I'm completely new to programming, as I am taking COP 1000. I only know what's been taught. This is the assignment that's being asked of me:
In this part you will write a C program to solve a problem described in English.
Create a sentinel controlled while loop that will ask the user to enter student grades until a value of -1 is entered. Use a counter variable to count all the grades that are passing grades, where 70 is the minimum passing grade. If there are any grades that are out of the range 0 – 100, present an error message to the user, and do not count that grade as passing.
Create 4 test cases. Use this as one of them:
Grades Entered: Expected Results
45
90
70
87
123 “That is not a valid grade!”
100
-1 You entered 4 passing grades.
I can not for the life of me figure this out. Where I'm getting stuck is trying to get the program to calculate the total passing grades at the end.
This is what I've got so far. It's very amateurish I'm sure. The reason why I was trying to convert the grade to '1' is because I was trying to make that accumulate to create a number of total passing grades. I've been on this for hours and I've realized that that method probably won't work. However, I don't know what to do. This is due tomorrow and I can't figure out how to do this.
The code is below:
download the slides used in this presentation
PowerPoint pptx | Acrobat pdf

Objectives

While engaging with this module, you will...

  1. become literate in the C++ syntax of looping
  2. apply your understanding of loops from the last module to create a working C++ loop
  3. analyze the differences between a while and a do-while loop

The while Loops

The syntax for the while is:

while(expression)
statement

And the details:

  • while is a reserved word.
  • Expression must be fully contained within the parentheses.
  • expression is a valid C++ expression that evaluates to true or false or a numerical value.
  • statement is a simple or compound C++ statement (with all semi-colons included).
  • This is a pre-test loop. This means that the condition in expression is checked before the body of the while loop (statement) might possibly be executed. This implies that the body of the loop may never be executed.
  • How it works: expression is evaluated. If it is true, the body (statement) is executed and control passes back up to expression to be evaluated again. If it is false, control passes out of the loop statement.

So, it is easy to see that, as the loop executes, something in the controlling expression must change! If not, then the loop will execute the body of the loop ad infinitum, or until the power company cuts your power. Since that may take a while (no pun intended), let’s just avoid them.

while (7)
cout<<”hello”<<endl;

This is a ridiculous loop. It is an infinite loop. Remember that 7 ≠ 0 is true. The expression 7 is checked for truth value, the output statement is executed, 7 is checked for value and is true, the output statement is executed again, etc ad infinitum. This loop has no LCV, hence no initialization, check, or update of the LCV.

cout<<'enter number between 5 and 89, inclusive: ';
cin>>input;
while (input < 5 || input > 89)
{
cout<<'that value is unacceptable... try again: ';
cin>>input;
}
cout<<'the value '<<input<<'is in the interval [5, 89]'<<endl;

Thus, we can now 'cleanse' user input in the sense that we can range check values prompted for. Note: in this course, you will always assume that the value given upon prompt of a user is the right type. That is, if you prompt for a char, you get a char; if you prompt for a number, you get a number, etc. The code to insure this is long and we don’t need to fool with it. So you see that the input from the initial prompt/readin is the LCV that is checked in the while expression, updated inside the loop, and initialized before the loop. Execution cannot leave the loop until proper input is obtained.

long sum = 0;
short counter = 1; // LCV initialization
while (counter <= 100) // LCV check
{
sum += counter;
counter++ ; // LCV update
}
cout<<'sum of first 100 integers is '<<sum;

Here’s an example that could demonstrate a tutorial for learning math:

const string QUESTION1 = 'What is 8 – 3 ?'; //if question1 changes, change ANS_Q1
const short ANS_Q1 = 5;
cout<<'QUESTION #1: '<<QUESTION1<<' ';
cin>>ans;
while ( (ans – ANS_Q1) != 0 )
{
cout<<”Your answer is incorrect. Please try again.'<<endl;
cout<<QUESTION1<<' ';
cin>>ans;
}
cout<<'Your answer is CORRECT! Congratulations!'<<endl;

So, you see that there is a computation in the expression that controls the loop. This is perfectly permissible. More complicated expressions are indeed allowed. Notice that, in this last example for instance, if you remove the cin>>ans; statement inside the loop, you will end up with an infinite loop. Why?

Now, you can see that the while statement is a pre-check loop; the condition (expression) is checked before the loop body is repeated (or not). Thus, the body is never guaranteed to execute even once.

The do-while Statement:

The C++ syntax is:

do
statement
while (expression);

And the details:

  • do and while are reserved words.
  • Expression must be fully contained within the parentheses.
  • expression is a valid C++ expression that evaluates to true or false or a numerical value.
  • statement is a simple or compound C++ statement (with all semi-colons included).
  • Do not forget the semicolon after the closing paren.
  • This is a post-test loop. This means that the condition in expression is checked after the body of the loop (statement) is executed. This implies that the body of the loop will always be executed at least once. I emphasize this point because it is very relevant.
  • How it works: Statement is executed. Then, expression is evaluated. If it is true, statement is executed again. If false, control passes out of the do-while statement.

Thus, you see that in this type of loop, the body of the loop will be executed at least once. Thinking of what you might want done at least once but possibly many times, prompting/reading in comes to mind.

short age, count = 0;
do
{
cout<<'Please enter your age: ';
cin>>age;
count++;
if (age <= 0 || age > MAX_AGE)
{
cout<<'This is not a valid value!'<<endl;
if (count MAX_ALLOWABLE_TRIES)
exit(1); // continued bad input; bailing out!
}
} while (age <= 0 || age > MAX_AGE);

Thus, we may now range-check out user input with a single prompt/read in. The user cannot exit this loop without entering reasonable information. Notice also that I have put the while on the same line as the closing brace. This is done not for the compiler, but for formatting reasons. If the while was put on the next line, it appears that we have begun another while loop, confusing anyone who reads the code. Also notice that I have included a counter variable that will keep track of how many times the user attempts to enter information. If that number of attempts reaches a predetermined “level of tolerance” (MAX_ALLOWABLE_TRIES), then the exit function is invoked and the run of the program terminated.

For example, prompt for and read in an integer between 2 and 174, inclusive, that is a multiple of three.

do
{
cout<<”Enter an integer between 2 and 174 (inclusive) that is a multiple of 3: “;
cin>>input;
} while (!(input >= 2 && input <= 174 && input%3 0));

Here I have built a logical expression that describes what I want to include, and then negated it with the ‘!’ operator.

While
0.1. Syllabus
2. Programming Fundamentals
2.1. C++ Basics
2.3. Reserved Words
3.1. Logical and Relational
5. Loops
5.1. Sentinel Loops
Sentinel Controlled While Loop C++
6. Advanced Branching
7. Odds and Ends
8. Functions
8.1. Reference Parameters
8.3. Dedication of Duty
8.5. Function Overloading
8.7. Inline
9. Random Number Generation
10. Multiple Files
11. Arrays
11.1. Working with Arrays
13. Character Arrays
13.1. Built-in Functions
14. File I/O
14.1. Reading a File
15. Objects
15.1. Defining Classes
15.3. Const Functions
15.5. Constructors
15.7.0 Overloading Operators
15.7.2 IsEquals
Sentinel Controlled While Loop C++
15.7.4 Constructor Overload
15.8.1 Bracket Operator
15.9. Static Members
16. Output Formatting
17. Namespaces
18. Enumerations
19. Sample Homework
19.1. Assignment #2
19.3. Assignment #4
19.5. Assignment #6
19.7. Assignment #8

Flag Controlled Loop

19.9. Assignment #10

Comments are closed.