Checking for buzz number – Computer Sir Ki Class

Login


Lost your password?

Don't have an account ?
Register (It's FREE) ×
  

Login
[lwa]



Code Learning #CPP#3176 siteicon   siteicon   siteicon  

Checking for buzz number

Test if a number is divisible by 7 or the last digit is 7, means whether the number is a buzz number.

Learning Objectives

  • Testing for divisibility and last digit checking together.

Source Code

TC++ #3176

 

Source Code

Run Output

Please enter a number: 21
21 is a buzz number

-OR-
Please enter a number: 37
37 is a buzz number

-OR-
Please enter a number: 15
15 is not a buzz number

Code Understanding

int n; cout<<“Please enter a number: “; cin>>n;
The number to be tested is collected from the user.

if(n%7 == 0 || n % 10 == 7)   cout << n << ” is a buzz number “<<endl;
In this case a buzz number has been tested when the number is divisible by 7 or the last number is 7.

else cout << n << ” is not a buzz number “<<endl;
Other wise suitable message for a non buzz number is printed.

Notes

  • The concept of buzz number comes from a memory an response testing technique where participants are asked say “BUZZ” when numbers are called in round robin and a number divisible by 7 or last digit 7 comes.


Suggested Filename(s): chkbuzz.cpp



Share

sunmitra| Created: 29-Jan-2018 | Updated: 30-Jan-2018|






×
Introductory Sessions Beginning to Program Tokens Keyword and Identifiers Data Types Variables and Constants Operators Simple User Input Building Expressions and Formulas Simple Real World Problems Simple If and If Else Multiple-Nested-Ladder of If Else Switch case selection Simple Loops Tricks in Loops - break continue scope Loop Applications - Handling numerals Series printing loops Nested Loops Pattern printing loops Number Varieties and Crunches String Handling (Null Terminated) Strings - string class type Functions (Built-in) Functions - user defined Functions Reference Passing/Returning Arrays Concepts and 1-D Arrays Array Data Management Two dimensional arrays and Matrices Structures Basics Structures passing/returning 2D Array Memory Addressing Display Using IO Manipulation Display Using C Formatting Tricks User Defined Data Types Enumerated Types Preprocessor Directives And Macros Exception Handling Programming Paradigms and OOPs Advantages Abstraction and Encapsulation Polymorphism Inheritance Function Overloading Concepts Function Overloading Varieties Function Overloading Special Cases Defining Classes Creating and Using Class Objects Class Members Accessibility Class Function Types Inline Functions Constant Functions Nesting of Functions Class Members Scope Resolution Static Members in a Class Array of Objects Constructor Concepts Default Constructor Parameterized Constructor Copy Constructor Constructor Overloading Destructors Inheritance Fundamentals Public Derivations Private and Protected Derivations Multiple Inheritance Multi-Level Inheritance Class Nesting Data File Concepts Handling Text Files Handling Binary Files Pointer Concepts Pointer and Arrays Pointers and Functions Object Pointers This Pointer Linked Lists Stacks Queues


Back