Programming Shortcut

Write, Run and execute Your programs with simple and esay way by Programming Shortcut

Monday, December 18, 2017

how to print 1 to 10 number program in java

Hello friends! Welcome to my website

Today We Run a program to print 1 to 10 number in java language.
This session is how to print number 1 to 10 and 1 to 10 with the difference of 2 in Java Programming. Here use of while loop in java programming with Example
This java language programming is free all type of errors like the compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code with the output. This programming output is customized to understand easily.

Program to print numbers 1 from 10 in java 


class testnumber {

    public void printwithone() {
        int i = 1;
        while (i             System.out.print(i + " ");
            System.out.print(" ");
            i++;
        }
    }
}

public class number {

    public static void main(String args[]) {
        testnumber o = new testnumber();
        o.printwithone();
    }
}


Output: 1 2 3 4  5 6 7 8 9 10


Program to print numbers 1 from 10 with difference of 2 in java


class testnumber {

    public void printwithtwo() {
        int i = 1;
        while (i             System.out.print(i + " ");
            System.out.print(" ");
            i = i + 2;
        }
    }
}

public class number {

    public static void main(String args[]) {
        testnumber o = new testnumber();
        o.printwithtwo();
    }
}


Output: 1 3 5 7 9



I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this java programming code or input & output please comment below
If you have another question about java programming send an email by contacting us form are given on the page right side.
I am Try to Help in your Programming Language by Programming Shortcut

Please share your experience about this post,
Thank You!
Newer Post Older Post Home
");

Programming Shortcut is collections in java best programs with example, best c programs with example and best c++ programs with example, best way to learn java, c and c++

About Programming Shortcut

This is a programming learning website that can help you learn and when your write your programming code. And all programming code is compiled run programming code in the following programming language C, c++, Java, php and Javascript Languages. find your programming read, understand the programming then copy and past and run your program and save your golden time to typing the program becuse you learn more in leas time. All Programming is codeing is ease to understand the programming