Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created March 20, 2021 08:47
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/1e2b88e512ab9c526832e252051338bd to your computer and use it in GitHub Desktop.
Save amankharwal/1e2b88e512ab9c526832e252051338bd 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