Questions tagged [fizzbuzz]

a game, algorithm and a common programming task of replacing any number divisible by three with the word "fizz", and any number divisible by five with the word "buzz"

Fizzbuzz is a game used to teach children division. Implementing an algorithm for that game is sometimes used as an interview task.

https://en.wikipedia.org/wiki/Fizz_buzz

290 questions
1
vote
1 answer

Python seems to make every variable a float

I tried to write a simple fizzbuzz program in python, I tried to use isinstance to determine if a number is a float or a int instead of creating a list, but whenever I try it for some reason it considers every number to be a float is this a thing…
Zaper
  • 23
  • 4
1
vote
1 answer

How to create the FizzBuzz using loops in JAVA

I'm writing this problem for school and I have some issues with it. I can't get "printFizzBuzz" to actually go up and calculate the wrapper function "FizzBuzz". I am required to use loops and was attempting to use a FOR loop. Beginner programmer…
BigJ
  • 23
  • 1
  • 7
1
vote
2 answers

FizzBuzz in Dlang

I'm trying to get fizzbuzz working in D but I have no idea for the life of me what the problem is. I have tried reversing the logic and it does write both words when it is not appropriate, but when it is it just writes nothing. Here's a screenshot…
Scy
  • 245
  • 1
  • 12
1
vote
3 answers

Why doesn't this code work? FizzBuzz JAVA

I cant get "FizzBuzz". No matter what the input, the "FizzBuzz" code isn't running. What did I do wrong? public String[] fizzBuzz(int start, int end) { int diff = end-start; String[] array = new String[diff]; for (int i = 0; i < diff; i++) { …
Aadhish
  • 13
  • 3
1
vote
3 answers

FizzBuzz using Methods in Java

I have solved this all inside the main method, however the professor has asked we follow very specific guidelines. Here are the instructions: Create methods with the following signatures (don’t forget static): private static boolean isFizz (int…
Sailanarmo
  • 1,139
  • 15
  • 41
1
vote
1 answer

Fizzbuzz Code Not Working

I need some help. My fizz-buzz code is correct but when my page loads it is not showing. Can someone help what I am missing? Here is my html: FizzBuzz…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/javascript" class="post-tag grid--cell" title="show questions tagged 'javascript'" rel="tag">javascript</a> <a href="../../questions/tagged/html" class="post-tag grid--cell" title="show questions tagged 'html'" rel="tag">html</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Oct 31 '15 at 19:20">asked Oct 31 '15 at 19:20</time> <a href="../../users/4860264/riza" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/4860264.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Riza" /> </a> <div class="s-user-card--info"> <a href="../../users/4860264/riza" class="s-user-card--link">Riza</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">25</li> <li class="s-award-bling s-award-bling__bronze" title="6 bronze badges">6</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-33224591"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status "> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/33224591/basic-undefined-method-for-rspec-examplegroups-0x00000101906440" class="question-hyperlink">basic undefined method for #<RSpec::ExampleGroups:::0x00000101906440></a></h3> <div class="excerpt">I started and to code back in 2013 and took a break from it and decided to start from scratch. But for the life of me cannot get pass this error. I've done everything I can think of, but it's not requiring the methods from the lib file. here is my…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/ruby" class="post-tag grid--cell" title="show questions tagged 'ruby'" rel="tag">ruby</a> <a href="../../questions/tagged/methods" class="post-tag grid--cell" title="show questions tagged 'methods'" rel="tag">methods</a> <a href="../../questions/tagged/rspec" class="post-tag grid--cell" title="show questions tagged 'rspec'" rel="tag">rspec</a> <a href="../../questions/tagged/undefined" class="post-tag grid--cell" title="show questions tagged 'undefined'" rel="tag">undefined</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Oct 19 '15 at 21:54">asked Oct 19 '15 at 21:54</time> <a href="../../users/4805607/sumer129" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/4805607.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="sumer129" /> </a> <div class="s-user-card--info"> <a href="../../users/4805607/sumer129" class="s-user-card--link">sumer129</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">11</li> <li class="s-award-bling s-award-bling__bronze" title="1 bronze badges">1</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-32283053"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/32283053/fizzbuzz-lambda-only-returning-last-integer" class="question-hyperlink">FizzBuzz Lambda Only Returning Last Integer</a></h3> <div class="excerpt">I'm new to Scheme and trying to write a sample FizzBuzz function. Here are the rules: If a number is divisible by 3 and by 5, instead say "fizzbuzz" Else if a number is divisible by 3, instead say "fizz" Else if a number is divisible by 5, instead…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/scheme" class="post-tag grid--cell" title="show questions tagged 'scheme'" rel="tag">scheme</a> <a href="../../questions/tagged/racket" class="post-tag grid--cell" title="show questions tagged 'racket'" rel="tag">racket</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Aug 29 '15 at 05:36">asked Aug 29 '15 at 05:36</time> <a href="../../users/4590124/aurora91" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/4590124.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="aurora91" /> </a> <div class="s-user-card--info"> <a href="../../users/4590124/aurora91" class="s-user-card--link">aurora91</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">478</li> <li class="s-award-bling s-award-bling__gold" title="1 gold badge">1</li> <li class="s-award-bling s-award-bling__silver" title="9 silver badge">9</li> <li class="s-award-bling s-award-bling__bronze" title="25 bronze badge">25</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-3220916"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>4</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/3220916/fizbuzz-program-how-to-make-the-output-correct" class="question-hyperlink">FizBuzz program: how to make the output correct?</a></h3> <div class="excerpt">I got a question about this program, it says: The FizzBuzz Challenge: Display numbers from 1 to x, replacing the word 'fizz' for multiples of 3, 'buzz' for multiples of 5 and 'fizzbuzz' for multiples of both 3 and 5. Th result must be:1 2 fizz 4…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/java" class="post-tag grid--cell" title="show questions tagged 'java'" rel="tag">java</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jul 10 '10 at 21:35">asked Jul 10 '10 at 21:35</time> <a href="../../users/388599/bentham" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/388599.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="bentham" /> </a> <div class="s-user-card--info"> <a href="../../users/388599/bentham" class="s-user-card--link">bentham</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">1,701</li> <li class="s-award-bling s-award-bling__gold" title="3 gold badges">3</li> <li class="s-award-bling s-award-bling__silver" title="20 silver badges">20</li> <li class="s-award-bling s-award-bling__bronze" title="32 bronze badges">32</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-30293542"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/30293542/adding-elements-to-new-array-ruby" class="question-hyperlink">Adding elements to new array Ruby</a></h3> <div class="excerpt">So initially I'm just playing around with the ole 'FizzBuzz' challenge. For those that may be unaware of what this challenge is, allow me to explain. The idea is to print out numbers 1..100 if the number is divisible by 3, it prints Fizz instead of…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/arrays" class="post-tag grid--cell" title="show questions tagged 'arrays'" rel="tag">arrays</a> <a href="../../questions/tagged/ruby" class="post-tag grid--cell" title="show questions tagged 'ruby'" rel="tag">ruby</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked May 18 '15 at 00:27">asked May 18 '15 at 00:27</time> <a href="../../users/4766423/nappstir" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/4766423.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Nappstir" /> </a> <div class="s-user-card--info"> <a href="../../users/4766423/nappstir" class="s-user-card--link">Nappstir</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">995</li> <li class="s-award-bling s-award-bling__gold" title="2 gold badges">2</li> <li class="s-award-bling s-award-bling__silver" title="20 silver badges">20</li> <li class="s-award-bling s-award-bling__bronze" title="38 bronze badges">38</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-30103880"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status "> <strong>1</strong> answer </div> </div> </div> <div class="summary"> <h3><a href="../../questions/30103880/import-statement-for-dagger-cannot-be-resolved" class="question-hyperlink">Import statement for dagger cannot be resolved</a></h3> <div class="excerpt">I am 'lucky' to have been charged with maintaining a program developed by someone else, and I come across the following problem with an import statement: import com.fizzbuzz.android.dagger.InjectingDialogFragment; which Android Studio cannot…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/android" class="post-tag grid--cell" title="show questions tagged 'android'" rel="tag">android</a> <a href="../../questions/tagged/import" class="post-tag grid--cell" title="show questions tagged 'import'" rel="tag">import</a> <a href="../../questions/tagged/dagger" class="post-tag grid--cell" title="show questions tagged 'dagger'" rel="tag">dagger</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked May 07 '15 at 14:22">asked May 07 '15 at 14:22</time> <a href="../../users/1112269/michaelsmith" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/1112269.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="michaelsmith" /> </a> <div class="s-user-card--info"> <a href="../../users/1112269/michaelsmith" class="s-user-card--link">michaelsmith</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">1,011</li> <li class="s-award-bling s-award-bling__gold" title="1 gold badge">1</li> <li class="s-award-bling s-award-bling__silver" title="16 silver badge">16</li> <li class="s-award-bling s-award-bling__bronze" title="35 bronze badge">35</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-27844904"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status "> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/27844904/ping-pong-aka-fizzbuzz-test" class="question-hyperlink">Ping-Pong aka FizzBuzz test</a></h3> <div class="excerpt">I am new to programming and am currently stuck on the Ping-Pong aka FizzBuzz problem. (Make a webpage where the user is prompted to enter a number and every number up to that number is displayed. However, for multiples of three, the page prints…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/javascript" class="post-tag grid--cell" title="show questions tagged 'javascript'" rel="tag">javascript</a> <a href="../../questions/tagged/html" class="post-tag grid--cell" title="show questions tagged 'html'" rel="tag">html</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Jan 08 '15 at 16:27">asked Jan 08 '15 at 16:27</time> <a href="../../users/4433647/kyle-chase" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/4433647.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Kyle Chase" /> </a> <div class="s-user-card--info"> <a href="../../users/4433647/kyle-chase" class="s-user-card--link">Kyle Chase</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">19</li> <li class="s-award-bling s-award-bling__bronze" title="1 bronze badges">1</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-27596754"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>2</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/27596754/what-is-the-role-of-when-concatenating-two-strings-eloquent-js-fizzbuzz" class="question-hyperlink">What is the role of += when concatenating two strings? (Eloquent JS FizzBuzz)</a></h3> <div class="excerpt">for (var n = 1; n <= 100; n++) { var output = ""; if (n % 3 == 0) output += "Fizz"; if (n % 5 == 0) output += "Buzz"; console.log(output || n); } Can someone explain how the += operator preceeding "Fizz" and "Buzz" plays a role in…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/javascript" class="post-tag grid--cell" title="show questions tagged 'javascript'" rel="tag">javascript</a> <a href="../../questions/tagged/string" class="post-tag grid--cell" title="show questions tagged 'string'" rel="tag">string</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Dec 22 '14 at 04:53">asked Dec 22 '14 at 04:53</time> <a href="../../users/4383759/emmanuel-coloma" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/4383759.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Emmanuel Coloma" /> </a> <div class="s-user-card--info"> <a href="../../users/4383759/emmanuel-coloma" class="s-user-card--link">Emmanuel Coloma</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">35</li> <li class="s-award-bling s-award-bling__bronze" title="3 bronze badges">3</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-26961612"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>3</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/26961612/php-fizzbuzz-logic" class="question-hyperlink">PHP FizzBuzz Logic</a></h3> <div class="excerpt">When we write the fizzbuzz script, why are we testing to see if it is equal to 0? Or am I misunderstanding? Example: $i % 3 == 0 <?php for ($i=1; $i<=100; $i++) { if ($i%3==0 && $i%5==0) { echo 'FizzBuzz'; }else if($i%3==0){ …</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/php" class="post-tag grid--cell" title="show questions tagged 'php'" rel="tag">php</a> <a href="../../questions/tagged/logical-operators" class="post-tag grid--cell" title="show questions tagged 'logical-operators'" rel="tag">logical-operators</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Nov 16 '14 at 20:20">asked Nov 16 '14 at 20:20</time> <a href="../../users/3532508/myoji" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/3532508.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Myoji" /> </a> <div class="s-user-card--info"> <a href="../../users/3532508/myoji" class="s-user-card--link">Myoji</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">279</li> <li class="s-award-bling s-award-bling__silver" title="3 silver badges">3</li> <li class="s-award-bling s-award-bling__bronze" title="13 bronze badges">13</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-26404442"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>1</strong></span> <div class="viewcount">vote</div> </div> </div> <div class="status answered-accepted"> <strong>3</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/26404442/why-does-this-ruby-use-u001-for-1-and-how-to-change" class="question-hyperlink">Why does this ruby use \u001 for 1 and how to change?</a></h3> <div class="excerpt">I've written the classic fizzbuzz code. The spec: describe "can determine fizzbuxx output for" do it "3" do expect(Fizzbuzz.nums(3)).to eq "123fizz" end end The code: class Fizzbuzz def self.nums(n) result="" (1..n).each do…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/ruby" class="post-tag grid--cell" title="show questions tagged 'ruby'" rel="tag">ruby</a> <a href="../../questions/tagged/fizzbuzz" class="post-tag grid--cell" title="show questions tagged 'fizzbuzz'" rel="tag">fizzbuzz</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Oct 16 '14 at 12:27">asked Oct 16 '14 at 12:27</time> <a href="../../users/631619/michael-durrant" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/631619.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Michael Durrant" /> </a> <div class="s-user-card--info"> <a href="../../users/631619/michael-durrant" class="s-user-card--link">Michael Durrant</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">93,410</li> <li class="s-award-bling s-award-bling__gold" title="97 gold badges">97</li> <li class="s-award-bling s-award-bling__silver" title="333 silver badges">333</li> <li class="s-award-bling s-award-bling__bronze" title="497 bronze badges">497</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="s-pagination pager fr"> <a class="s-pagination--item" href="../../questions/tagged/fizzbuzz_page=6" rel="prev" title="Go to page 6">Prev </a> <a class="s-pagination--item" href="../../questions/tagged/fizzbuzz_page=1" rel="" title="Go to page 1">1</a> <a class="s-pagination--item" href="../../questions/tagged/fizzbuzz_page=2" rel="" title="Go to page 2">2</a> <a class="s-pagination--item" href="../../questions/tagged/fizzbuzz_page=3" rel="" title="Go to page 3">3</a> <div class="s-pagination--item s-pagination--item__clear">…</div> <a class="s-pagination--item" href="../../questions/tagged/fizzbuzz_page=19" rel="" title="Go to page 19">19</a> <a class="s-pagination--item" href="../../questions/tagged/fizzbuzz_page=20" rel="" title="Go to page 20">20</a> <a class="s-pagination--item" href="../../questions/tagged/fizzbuzz_page=8" rel="next" title="Go to page 8"> Next</a> </div> </div> </div> </div> </div> <script src="../../static/js/stack-icons.js"></script> <script src="../../static/js/fromnow.js"></script> </body> </html>