print the even numbers between the range 100-200

print the even numbers between the range 100-200

Q ?write an application that print out the even numbers between the range 100-200 ? 1- which aer not divisible by 7 and 5 ? 2- Number of the numbers which are not divisible by 7 and 5? 3- The summation of the numbers?

View Answers

May 14, 2012 at 12:23 PM

The given code prints out the even numbers between the range of 100 and 200 and then determine the even numbers which are not divisible by 5 and 7. It also find out the sum of all the even numbers between 100 and 200.

class EvenNumbers 
{
    public static void main(String[] args) 
    {
        int sum=0;
        System.out.println("Even Numbers between 100 and 200");
        for(int i=100;i<=200;i++){
            if(i%2==0){
                sum+=i;
                System.out.println(i);
            }
        }
        System.out.println("Even Numbers between 100 and 200 which are not divisible by 5 and 7");
        for(int i=100;i<=200;i++){
            if(i%2==0){
                if((i%7!=0)&&(i%5!=0)){
                    System.out.println(i);
                }
            }
        }
        System.out.println("Sum of even numbers: "+sum);
     }
}









Related Tutorials/Questions & Answers:
print the even numbers between the range 100-200
print the even numbers between the range 100-200  Q ?write an application that print out the even numbers between the range 100-200 ? 1- which aer... prints out the even numbers between the range of 100 and 200 and then determine
write an application that print out the even numbers between the range 100-200
write an application that print out the even numbers between the range 100-200   write an application that print out the even numbers between... and determine the even numbers between them. class EvenNumbers { public static
Advertisements
Listing all even numbers between two numbers
Listing all even numbers between two numbers  Hi, How to write code to list all the even numbers between two given numbers? Thanks   Hi, You function will take 2 numbers and the find the even numbers between
How to list even numbers between 1 and 100?
How to list even numbers between 1 and 100?  Hi, I Java to check if a number is even? How to list even numbers between 1 and 100? Thanks  ...: if(i%2==0 ){ //Number is even } You can use the for loop and print all
Program to display palindrome numbers between some range
Program to display palindrome numbers between some range  Hi!I want a java program to display palindrome numbers between 100 to 1000.can you please explain me the logic with an example   import java.util.*; public
Write a program to list all even numbers between two numbers
Write a program to list all even numbers between two numbers... all the even numbers between two numbers. For this first create a class named... desired number to get all even numbers between 1 and this numbers.  Here
print numbers
print numbers  1234 123 12 1234   1234 123 12 1234
Generating random numbers in a range with Java
Generating random numbers in a range with Java  Generating random numbers in a range with Java
Prime Numbers from range
Prime Numbers from range  how to find prime numbers in a given range which are palindromes??   Hi Friend, Try the following code: import java.util.*; public class PrimeAndPalindrome { static final int MAXNUMBER
EVEN NUMBERS - Java Interview Questions
EVEN NUMBERS  i want program of even numbers?i want source code plz reply?  Hi Friend, Try the following code: class EvenNumbers... counter = 0; System.out.println("Even Numbers are:" ); for (int i
ModuleNotFoundError: No module named 'print_range'
ModuleNotFoundError: No module named 'print_range'  Hi, My Python... 'print_range' How to remove the ModuleNotFoundError: No module named 'print_range' error? Thanks   Hi, In your python environment
Application for print pyramid of numbers
Application for print pyramid of numbers  What is the code for printing the numbers like 1 1 1 1 2 2 1 1 3 4 3 1 1 4 7 7 4 1
Java write even numbers to file
have used print() method to store the even numbers to the file.ADS_TO_REPLACE_1...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
print numbers in traingle shape
print numbers in traingle shape  1 22 333 4444 i want output like this please help me   class Pyramid { public static void main(String[] args) { for(int i=1;i<=4;i++){ for(int j=1;j<
print the sum of even number from 1 to 100
print the sum of even number from 1 to 100  how to print the sum of even number from 1 to 100 using for loops? Thanks
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:ADS_TO_REPLACE_1... Numbers { public satic void main(string args[]_ { for(int a=1;a<
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
mysql difference between two numbers
mysql difference between two numbers  How to get total bate difference between two dates for example 1/01/2012 and 1/02/2012 in MYSQL?   ... between two date. The syntax of DATEDIFF is .. SELECT DATEDIFF('2012-01-31 23:59
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
Prime numbers in Java between 1 and 100
Prime numbers in Java between 1 and 100  Hi, How to display prime numbers in java between 1 and 100? Thanks   Hi, Prime numbers... which prints prime numbers between 1 and 100. Here is complete for printing prime
Generate random number between two numbers in Scala
Generate random number between two numbers in Scala  Hi, How to Generate random number between two numbers in Scala? Thanks   Hi, Following code can be used for generating random number in scala: val rand = new
Generate random number between two numbers in Scala
Generate random number between two numbers in Scala  Hi, How to Generate random number between two numbers in Scala? Thanks   Hi, Following code can be used for generating random number in scala: val rand = new
How to print a equilateral triangle patren with numbers
How to print a equilateral triangle patren with numbers  I figure out how to use for loop to print the triangle but i couldn't get the exact values as this http://im37.gulfup.com/FzrOb.jpg could you please help me
how to write a program in java to print numbers in equalateral triangle
how to write a program in java to print numbers in equalateral triangle  the output must be 1 324 76589   Here is an example of pattern 1 2 3 4 5 6 7 8 9 Example: public class NumberTriangle{ public
java code for print true if even and false if odd and print error if any float value with out using conditional and looping statement
java code for print true if even and false if odd and print error if any float value with out using conditional and looping statement  hi class Even{ public static void main(String[] arg){ int num=Integer.parseInt
JSTL - check odd/even number - JSP-Servlet
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 is 4. It is an even number between 3 and 5. Much thanks all!  Hi
numbers
numbers  Write a program that read 15 integers between 0 and 6 and a method to search, displays and returns the number that has the highest occurrence. Prompt the user if the number is not within this range.   Hello
Random numbers - Development process
Random numbers  hi, How to generate unique random numbers between range like(10 to 50)  Hi friend, class RandomNumber { public... to this number int aNumber = (int) (Math.random() * 40 + 10); //print
Check even or odd number.
is used for inputting number. Even numbers are those numbers, which are divisible... the condition of num divisibility. If divisible then it will print even number else...Check even or odd number.  How to check given number is even or odd
Java Find Automorphic numbers
the automorphic numbers between 1 and 1000. Automorphic numbers are the numbers... of number 6 at the end. Here we are going to find the automorphic numbers between 1...("Automorphic Numbers between 1 and 1000 are: "); for (long i = 1; i < 1000; i
print
print  How to print JFrame All Componant?   Please visit the following link: http://www.roseindia.net/java/example/java/swing/Print.shtml
SQL BETWEEN Operator
SQL BETWEEN Operator       The SQL Between Operator works where you want to select a range of data between two values. In SQL, the BETWEEN operator is used to select a range
PRIME AND EVEN AND ODD - Java Interview Questions
PRIME AND EVEN AND ODD  how to write prime numbers?i want source code? how to write even numbers? i want source code? how to write odd numbers ?i... numbers between 1 to 20. class PrimeNumbers{ public static void main (String
Print
into the stream and, as opposed to print() method, gets you to the new line after the text
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...{ System.out.println(); System.out.println("1 Display Even
Prime Numbers - IDE Questions
Prime Numbers  Create a program that calculates the prime numbers from any inputted start and end range of values (e.g. 5 and 28) and print the prime numbers in rows of 10. Hint: Use a counter to count how many values are printed
Mysql Time Range
Mysql Time Range      ... numbers. Understand with ExampleADS_TO_REPLACE_1 The Tutorial illustrate an example from 'Mysql Time Range'. To understand example we create a table
Even and odd functions in java
"); } } } Description : Number which is divisible by 2 is called even numbers...Even and odd functions in java  Even and odd functions in java  ...); int number; System.out.println("Input any number to check even
range of dates in mysql query
range of dates in mysql query  How to select the range of dates in mysql ..when i have to select from between & and of date function?   SELECT * FROM MAAccounts WHERE updatedOn BETWEEN ? AND ? ORDER
prime numbers - Java Beginners
prime numbers  Write a java program to find the prime numbers between n and m
Add Two Numbers in Java
these arguments and print the addition of those numbers. In this example, args... Add Two Numbers in Java     .... These passed arguments are of String types so these can't be added as numbers
echo and print statement
echo and print statement  hello, What is the difference between echo and print statement
PHP Introduction to PHP Echo and print Tutorial
forms of outputting: print() and echo(). First... be written or added directly to your HTML!! All you have to do is put it between... was written for. The first outputting function I will show you is print
date range in sql
date range in sql  How can I select a random date from a date range in SQL server
range of int in c
range of int in c  What is the range of int in c/c++ and Java programming language
automorphic numbers
automorphic numbers  how to find automorphic number in java   Hi Friend, Pleas visit the following link:ADS_TO_REPLACE_1 Automorphic numbers Thanks
ModuleNotFoundError: No module named 'range'
ModuleNotFoundError: No module named 'range'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'range' How to remove the ModuleNotFoundError: No module named 'range'
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
MySQL range
data lying between some range. To fire query we must have some data into a table... MySQL range       May... in the particular range of values but there is not any predefined function in MySQL but we
Prime Numbers
Prime Numbers  Create a complete Java program that allows the user to enter a positive integer n, and which then creates and populates an int array with the first n prime numbers. Your program should then display the contents

Ads