Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
Loading...
Searching...
No Matches
buzz_number.cpp File Reference

A buzz number is a number that is either divisible by 7 or has last digit as 7. More...

#include <iostream>
Include dependency graph for buzz_number.cpp:

Functions

int main ()
 

Detailed Description

A buzz number is a number that is either divisible by 7 or has last digit as 7.

Function Documentation

◆ main()

int main ( void )

main function

9 {
10 int n, t;
11 std::cin >> t;
12 while (t--) {
13 std::cin >> n;
14 if ((n % 7 == 0) || (n % 10 == 7))
15 std::cout << n << " is a buzz number" << std::endl;
16 else
17 std::cout << n << " is not a buzz number" << std::endl;
18 }
19 return 0;
20}
T endl(T... args)
Here is the call graph for this function: