rename Others -> others (#648)

* rename Others -> temp

* rename Others -> others
This commit is contained in:
Christian Clauss
2019-11-28 13:29:54 +01:00
committed by GitHub
parent 6fe40bd0a2
commit ac1ba3a613
19 changed files with 141 additions and 141 deletions

17
others/Buzz_number.cpp Normal file
View File

@@ -0,0 +1,17 @@
//A buzz number is a number that is either divisble by 7 or has last digit as 7.
#include <iostream>
using namespace std;
int main()
{
int n, t;
cin >> t;
while (t--)
{
cin >> n;
if ((n % 7 == 0) || (n % 10 == 7))
cout << n << " is a buzz number" << endl;
else
cout << n << " is not a buzz number" << endl;
}
return 0;
}