Search:

Type: Posts; User: joy1604

Search: Search took 0.14 seconds.

  1. Replies
    6
    Views
    1,024

    Re: please solve my problem

    Thanks bro i really appreciate it.... it worked
  2. Replies
    6
    Views
    1,024

    Re: please solve my problem

    thank you so much
    i wanted it to give me just FIZZ instead of 3 and BUZZ instead 5, but its giving me both. like 3 and FIZZ

    --- Update ---

    This is my Output =
    1
    2
    3
    FIZZ
  3. Replies
    6
    Views
    1,024

    please solve my problem

    public class fizzbuzz {


    public static void main(String[] args) {
    int i = 0;
    while(i < 100)
    {
    i++;
    if(i % 3 != 0)
    {
Results 1 to 3 of 3