TheAlgorithms/C++
1.0.0
All the algorithms implemented in C++
Loading...
Searching...
No Matches
buzz_number.cpp
Go to the documentation of this file.
1
6
#include <iostream>
7
9
int
main
() {
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
}
main
int main()
Definition
buzz_number.cpp:9
others
buzz_number.cpp
Generated by
1.12.0