Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created February 9, 2021 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/17ba5298c8eeb0b8c117e71f0246764c to your computer and use it in GitHub Desktop.
Save amankharwal/17ba5298c8eeb0b8c117e71f0246764c to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
int main(){
for(int i = 1; i<=20; i++){
if(i % 3 == 0 && i % 5 == 0){
cout<<"FizzBuzz"<<endl;
}
else if(i % 3 == 0){
cout<<"Fizz"<<endl;
}
else if(i % 5 == 0){
cout<<"Buzz"<<endl;
}
else{
cout<<i<<endl;
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment