| 1234567891011121314151617181920212223242526 |
-
- /**
- * Write a description of class FizzBuzz here.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class FizzBuzz
- {
- // instance variables - replace the example below with your own
- private int x;
-
-
- public String fizzBuzz(int x)
- {
- if (x%15 == 0)
- return "FizzBuzz";
- else if(x%5 == 0)
- return "Buzz";
- else if(x%3 == 0)
- return "Fizz";
- // put your code here
- return "" +x+ "";
- }
- }
|