Computer Science, asked by shreyansh79142, 4 months ago

To input a number and check whether is buzz number or not in flowchart​

Answers

Answered by SHAMBHAVIKASHYAP37
1

Answer:

Source Code

#include <iostream>

using namespace std;

int main()

{

int n;

cout<<"Please enter a number: ";

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;

}

Similar questions
Math, 9 months ago