mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
23 lines
453 B
C++
23 lines
453 B
C++
/**
|
|
* @file
|
|
* @brief A buzz number is a number that is either divisible by 7 or has last
|
|
* digit as 7.
|
|
*/
|
|
#include <iostream>
|
|
|
|
/** main function */
|
|
int main()
|
|
{
|
|
int n, t;
|
|
std::cin >> t;
|
|
while (t--)
|
|
{
|
|
std::cin >> n;
|
|
if ((n % 7 == 0) || (n % 10 == 7))
|
|
std::cout << n << " is a buzz number" << std::endl;
|
|
else
|
|
std::cout << n << " is not a buzz number" << std::endl;
|
|
}
|
|
return 0;
|
|
}
|