mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-12 19:47:53 +08:00
formatting source-code for d7af6fdc8c
This commit is contained in:
@@ -6,10 +6,12 @@
|
||||
#include <iostream>
|
||||
|
||||
/** main function */
|
||||
int main() {
|
||||
int main()
|
||||
{
|
||||
int n, t;
|
||||
std::cin >> t;
|
||||
while (t--) {
|
||||
while (t--)
|
||||
{
|
||||
std::cin >> n;
|
||||
if ((n % 7 == 0) || (n % 10 == 7))
|
||||
std::cout << n << " is a buzz number" << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user