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
9int 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}
int main()