Home Answers Viewqa JSP-Servlet odd numbers with loop

 
 


RishabhMehrotra
odd numbers with loop
1 Answer(s)      2 years and 3 months ago
Posted in : JSP-Servlet

get the odd numbers till 100 with for,while loop

View Answers

March 3, 2011 at 11:04 AM


Java find odd numbers:

class OddNumbers 
{
    public static void main(String[] args) 
    {
        for(int i=1;i<=100;i++){
            if(i%2!=0){
                System.out.println(i);
            }
        }
    }
}

class OddNumbers 
{
    public static void main(String[] args) 
    {
        int i=1;
        while(i<=100){
            if(i%2!=0){
                System.out.println(i);
            }
            i++;
        }
    }
}









Related Pages:
odd numbers with loop
odd numbers with loop  get the odd numbers till 100 with for,while loop   Java find odd numbers: class OddNumbers { public static void main(String[] args) { for(int i=1;i<=100;i
odd and even
odd and even  how can i make a program of even and odd using case...); System.out.println("Enter Numbers: "); int arr[]=new int[10]; for(int i=0;i<... Display Odd"); System.out.println("3 Exit"); System.out.print("Choose
Check even or odd number.
by 2, and odd numbers are not divisible by 2. if((num %2)==0) is checking...Check even or odd number.  How to check given number is even or odd?   Simple if it is devided by 2 it is even and if not if is Odd  
Even and odd functions in java
and which is not divisible by 2 is called odd numbers. Here we...Even and odd functions in java  Even and odd functions in java  ... or odd:"); number = input.nextInt(); evenMethod( number
Calculate sum of even and odd numbers in Java
Calculate sum of even and odd numbers In this section, you will learn how to read the file that contains even and odd numbers and calculate their sum separately. To do this, first of all, we have found all the even and odd numbers from 1
for loop
for loop  hai, I need to write java program to print numbers in "X" format
for loop
for loop  using only two for loop how can print below numbers 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 8 8 8 8 8 8 8 8 7 7 7 7 7 7 7 6 6 6 6 6 6 5 5 5 5
for loop
for loop  using only two for loop how can print below numbers 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 8 8 8 8 8 8 8 8 7 7 7 7 7 7 7 6 6 6 6 6 6 5 5 5 5
while loop to for loops
: "+currentNum); } else{ System.out.print("Odd numbers... numbers and sum of even numbers System.out.print("Odd Numbers...++; } System.out.println( ); System.out.println("Sum of square of odd numbers
JSTL - check odd/even number - JSP-Servlet
JSTL - check odd/even number  How do i create a JSTL program to generate random numbers and to check whether they are odd/even and print "this is an even (odd) number and it is in between so and so number? e.g. the random number
Check whether highest number is even or odd
Check whether highest number is even or odd In this section, you will learn how to check highest number between the two numbers and then determine whether it is odd or even. For this, we have taken two integer variables num1 and num2
PRIME AND EVEN AND ODD - Java Interview Questions
? how to write even numbers? i want source code? how to write odd numbers ?i... + " "; } } } System.out.println(primeNo); } } 2) Following code displays Even and Odd numbers... between 1 to 20 are: "+evenNo); System.out.println("Odd Numbers between 1
Odd Even Transposition Sort In Java
Odd Even Transposition Sort In Java   ... In this example we are going to sort integer values of an array using odd even transposition sort. Odd even transposition sort is a parallel sorting algorithm. Odd Even
Prime Numbers
with the first n prime numbers. Your program should then display the contents... a positive value for n, and should loop until they do so
Java I/O Assistance + Loop
)); //This for loop is identical to the previous one, except for odd numbers... numbers into the file and close the file. Then I'm trying to make it re open file and append all odd numbers 1-100 and finally close file. But for some reason I
loop statements
loop statements  write a program that reads from input an interger n and prints the factorial of all numbers between 1 and n
Java number calculation using while loop
must be less than secondNum.) and output all the odd numbers between firstNum... the odd numbers between firstNum and secondNum inclusive. Example: import...{ System.out.println("Odd Numbers: "); while(num1 <= num2) { if(num1%2 != 0
To find first two maximum numbers in an array,using single loop without sorting array.
To find first two maximum numbers in an array,using single loop without sorting array.  Java program to find first two maximum numbers in an array,using single loop without sorting array
To find first two maximum numbers in an array,using single loop without sorting array.
To find first two maximum numbers in an array,using single loop without sorting array.  Java program to find first two maximum numbers in an array,using single loop without sorting array
numbers - Java Beginners
the odd number integers from 1 to 100, separated by a comma to the end of the file
using for loop
using for loop  what will be the source code of the program that the output will be printing all numbers that is divisible by 3 and 5 sample output: 3 is divisible by 3 5 is divisible by 5 6 is divisible by 3 9 is divisible by 3
print 100 numbers using loops
print 100 numbers using loops  how to print from 1 to 100 using for loop ?   Hi Friend, You can use the following code: class Loop..., You can use the following code: class Loop{ public static void main(String
for loop - Java Beginners
for loop  write a program to print the product of all the numbers from 1 to N(this is also known as factorial of the numbers
for loop - Java Beginners
for loop  write a program to print the product of all the numbers from 1 to N(this is also known as factorial of the numbers
To find first two maximum numbers in an array
To find first two maximum numbers in an array  Java program to find first two maximum numbers in an array,using single loop without sorting array
loop problem - Java Beginners
loop problem  I trying to write a program which prints out even numbers, I've got that part, however, I need to only have 5 numbers per line. ex... = ""; int counter = 0; System.out.println("Even Numbers
Write a program to list all even numbers between two numbers
Write a program to list all even numbers between two numbers       Java Even Numbers - Even Numbers Example in Java: Here you will learn to write a program for listing out
for loop - Java Beginners
for loop  write a program to enter two numbers and print their HCF.   Hi Friend, Try the following code: import java.util....); System.out.println("HCF of two numbers= "+hcf); } } Thanks
loop
loop  what is the difference b/w do while,while and for loop..with example
loop
loop  i want to write my name(inder) through loop in java using star
for loop
for loop  what is for loop   Loops are used for iteration... for a number of times it is finite loop and if repetition is done infinitely it is infinite loop. Java provides several loop structures for iteration. Those
Mysql Mod
Mysql Mod       Mysql Mod (a,b) is performed to return remainder  when b is divided by a. Incase you use MOD(a, 3) you get 1 for even numbers and 0 for odd numbers. If you use
For loop
For loop  Hi! Please explain the following loop: for(i=0;i<a[j];i++) THANX!!   Please reply as soon as possible
for loop
for loop  how to performs the for loop when 2 inputs given like displays the triangle shape and how to take initial values or declaration values plz explain in detailed ex. 1 12 123 1234
Loop
to understand a loop my quesiton are: what du i do wrong in my code since.... (made in blueJ) Class Loop public void loopUpGeneral(int start, int stop... dk  Hi, Please check the for loop once again: for (int i
Writing a loop statement using Netbean
Writing a loop statement using Netbean  Write a loop program using NetBeans.   Java Loops class Loops{ public static void main(String...; } System.out.println("Sum of first 10 numbers: "+sum
Java write even numbers to file
started a loop for numbers 1 to 50. If the number is totally divided by 2...Java write even numbers to file In this section, you will learn how to write the even numbers to file. By using the PrintWriter class, you can write any type
For Loop
For Loop  Write a program using a for loop that computes the following sum: 1/2 + 2/2 + 3/2 + 4/2 + 5/2 + ... N/2 N will be an integer limit the user enters. This is an example of my upcoming quiz. I need help on knowing
loop
loop  strong textHello can someone help me with this problem,I need to output the following code using a loop the code is as follows with the user inputs in inverted commas,thanks. ENTER CODE(XX to Stop) CODE:"D24" QUANTITY:"2
JavaScript array of numbers
JavaScript array of numbers   ... in understanding 'Java Script array of numbers'. For this we use  Java... by subscripts indexing expression enclosed by [].The for loop execute
C Break for loop
that the program is supposed to count the numbers from 1 to 20 using for loop. As per... C Break for loop       In this section, you will learn how to use break statement in a for loop
Pick Prime Numbers from the ArrayList
Pick Prime Numbers from the ArrayList Programmers mostly used ArrayList... be traversed using a foreach loop, iterators, or indexes. Here we have stored some... and non prime numbers separately. Here is the code: import java.util.
JavaScript array for loop
JavaScript array for loop     ... for loop is executed in a JavaScript. The code import the following packages- 1... for handling text,message,date and numbers. Method Used -  1)Format
Java find prime numbers without using break statement
Java find prime numbers without using break statement In this tutorial, you will learn how to find the prime numbers without using break statement. You all are aware of Prime Numbers, these are the numbers which are either divided
Numbers
Java NotesNumbers Two kinds of numbers. There are basically two kinds of numbers in Java and most other programming languages: binary integers (most commonly using the type int) and binary floating-point numbers (most commonly using
automorphic numbers
automorphic numbers  how to find automorphic number in java   Hi Friend, Pleas visit the following link: Automorphic numbers Thanks
sorting numbers
sorting numbers  How to sort the numbers in ascending order   import java.util.*; class SortNumbers{ public static void main(String...=input.nextInt(); list.add(num); } System.out.println("Numbers
Numbers pyramid
Numbers pyramid  Hi sir, Can you please tell me how to output this using nested for loops? 1 2, 1 1, 2, 3 4, 3, 2, 1 1, 2, 3, 4, 5 6, 5, 4, 3, 2, 1 1, 2, 3, 4, 5, 6, 7 8, 7, 6, 5, 4, 3, 2, 1 1, 2, 3, 4, 5, 6, 7, 8, 9 10, 9, 8

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.