Skip to content

ComputerScience1-Period4/program-problem-3-pancakes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Three_Digit_Ascend_Descend_Selection

-Program Problem 3

Program Problem 3 : Three_Digit_Ascend_Descend_Selection

Assume that a completely trustworthy and perfect user comes along and will enter a 3 digit number into your program as you ask for it. Create a new empty project and make sure you have a header that includes both of your names on the project.

1. Ask for the completely trustworthy and perfect user to enter a 3 digit number into your program.

2. Store that number into a variable.

3. Take that variable and separate each of the three digits into separate variables.

4. Using those and selection of some nature. Print out whether the Number is Ascending or Descending based on the fact that each number is less than or greater than the previous number.

5. Once this is done, go back over your code, and make sure you have comments so that your code is clearly understood by every member of the class.

Below is a template to start your program:

/*

Your Name - Date Period

Assignment Name : *

Brief Description of the Assignment

*/

// Libraries

#include // gives access to cin, cout, endl, <<, >>, boolalpha, noboolalpha

#include <conio.h> // gives access to _kbhit() and _getch() for pause()

// Namespaces

using namespace std;

// Functions()

void pause() {

cout << "Press any key to continue . . .";

while (!_kbhit());

_getch();

cout << '\n';	

}

// MAIN

void main() {

pause(); // pauses to see the displayed text

}

About

program-problem-3-pancakes created by GitHub Classroom

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages