ask user how many numbers to be inputted and determine the sum and highest number using an array in java

ask user how many numbers to be inputted and determine the sum and highest number using an array in java

ask user how many numbers to be inputted and determine the sum and highest number using an array in java

View Answers

January 16, 2012 at 12:41 PM

import java.util.*;

class ArrayExample{

    public static void main(String[] args) {
        int largest = 0;
        Scanner input = new Scanner(System.in);
        System.out.print("How many numbers you want to display: ");
        int n=input.nextInt();
        System.out.println("Enter array values: ");
        int arr[] = new int[n];
        int sum=0;
        for(int i = 0; i < arr.length; i++) {
            arr[i] = input.nextInt();
            if (largest < arr[i]) {
                largest = arr[i];
            }
            sum+=arr[i];
        }
        System.out.println("Largest number is: " + largest);
        System.out.println("Sum of array values: " + sum);
    }
}

January 17, 2012 at 8:57 AM

Thanks a lot for the code.... :) it helps me a lot.... :) ^_^









Related Tutorials/Questions & Answers:
ask user how many numbers to be inputted and determine the sum and highest number using an array in java
ask user how many numbers to be inputted and determine the sum and highest number using an array in java  ask user how many numbers to be inputted and determine the sum and highest number using an array in java
Find sum of all the elements of matrix using Java
Find sum of all the elements of matrix using Java A matrix is a rectangular array of numbers. The numbers in the matrix are called its entries or its elements... dimensional array. Now to determine the sum of all these elements, we have
Advertisements
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... the highest number.After getting the highest number, we have created a condition
Determine Average by removing Largest and Smallest Number
and smallest number. Now to remove these highest and lowest numbers from the array, we have... will learn how to remove largest and smallest number from the 10 numbers and then determine the average. For this, an user is allowed to input 10 numbers
Sum of two numbers using command line arguments in Java
Sum of two numbers using command line arguments in Java  Hi, How...? The calculate the sum of two numbers using command line arguments in Java... sum = a+b; Check complete example code at Add Two Numbers in Java. Thanks
determine the top 10 highest and 10 lowest in java
determine the top 10 highest and 10 lowest in java  hello, I have... java in INDIA, how the programming code in java to rank them. Thank you... that contains the codebooks and namesmembers. I want to make 10 the highest rank anyone
Find consecutive numbers whose sum is equal to input number.
Find consecutive numbers whose sum is equal to input number. In this section, you will learn how to display the consecutive natural numbers whose sum is equal... numbers which sum up to given number. Here is the code: import java.util.
Java count occurrence of number from array
Java count occurrence of number from array Here we have created an example that will count the occurrence of numbers and find the number which has... will ask for another number. Then using the ArrayList we determined the occurrence
C calculate sum of first and last element of array
will learn how to calculate sum of first and last element from the array of five... numbers of their choice. These numbers will get stored into the array as the user enters the number. Then using the index of the array, we have found first
Sum of a Number using Swing
Sum of a Number using Swing       In this section, you will learn how to sum of a number using swing...;Calculate.java" to sum of a number using Swing
using session variable determine the no of pages viewd by the user
using session variable determine the no of pages viewd by the user  using session variable determine the no of pages viewd by the user   Hi...://www.roseindia.net/tutorial/java/jsp/trackuserSession.html Thanks
Calculate the Sum of three Numbers
. In this section you will learn how to calculate the sum of three numbers by using three... Calculate the Sum of Three Numbers   ... how to calculate three integer number . First of all define class name "
A program to find the sum of odd number
A program to find the sum of odd number In this section you will learn how to find the sum of odd number in the series up to the given number in java... number. import java.util.Scanner; public class Sum { public static
Find HCF of three numbers in Java Program
Find HCF of three numbers in Java Program In this java tutorial section, you will learn how to determine the HCF (Highest Common Factor) or GCD (Greatest... Factors of 12=1,2,3,4,6,12 Here 4 is the highest number that can exactly
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... numbers from the file and then calculate their sum. Here is the code
JavaScript determine add, product of two numbers
JavaScript determine add, product of two numbers In this section, you will learn how to determine addition, multiplication, division and modulus of two...=document.form.text2.value; var sum=Number(num1)+Number(num2); alert
read a positive real numbers from highest to lowest
read a positive real numbers from highest to lowest  write a java program that will read a sequence of 10 positive real nos. entered by the user and will print the same numbers in sorted order from lowest to highest using arrays
How to Check Automorphic Number using Java Program
How to Check Automorphic Number using Java Program Automorphic numbers are the numbers whose square ends with the number itself or you can say it is a number whose square ends with the given integer. For example,5 is an automorphic number
How many qusetions can you ask?
How many qusetions can you ask?  Hi I was very impressed following my very first question I asked regarding some coding. However I am not sure why any further questions have not yet been answered. Is this because they are more
Java Sum of Digits
Java Sum of Digits In this Java Tutorial section, you will learn how to find the sum of multidigit number. For this purpose, we have allowed the user to enter multidigit number. User can enter any digit number but cannot exceed to 9 digit
Find sum of the squares of Array elements
Find sum of the squares of Array elements In this section, you will learn how to compute the sum of the squares of the array elements. For this, we have allowed the user to enter 5 numbers, to be stored into the array. Then we have
Sum of first n numbers
Sum of first n numbers  i want a simple java program which will show the sum of first n numbers....   import java.util.*; public class...; } System.out.println("Sum of Numbers from 1 to "+n+" : "+sum
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
How to put text file numbers to array and check the position of numbers?
How to put text file numbers to array and check the position of numbers?   I have numbers in text file data.txt 12 9 8 3 1
c++ array find the average mark, highest mark, lowest mark, number of students passing,
, highest mark, lowest mark, number of students passing, using array. 01 #include<iostream> 02 using namespace std; 03 int main() 04 { 05 int...c++ array find the average mark, highest mark, lowest mark, number of students
c++ array find the average mark, highest mark, lowest mark, number of students passing,
, highest mark, lowest mark, number of students passing, using array. 01 #include<iostream> 02 using namespace std; 03 int main() 04 { 05 int...c++ array find the average mark, highest mark, lowest mark, number of students
How to add two numbers in Java?
How to add two numbers in a Java program? In Java you can easily add... numbers in Java it will return you int value as sum of two numbers. In real world... numbers. The value will be returned as sum of the number. So, we have to define
Calculate sum and Average in java
. The given code accepts the numbers from the user using BufferedReader class. Then using... the sum by the total number of numbers, we have determined the average of numbers...Calculate sum and Average in java  How to calculate sum and average
Sum of positive and negative numbers
]; } } System.out.println("Sum of positive numbers: "+sum2); System.out.println("Sum of negative numbers: "+sum1...Sum of positive and negative numbers  Hi if someone could help
ask a user to enter 5 integer
ask a user to enter 5 integer  make a program that enter 5 numbers then identify the largest and the smallest number sample program 2 4 3 5 6 the smallest number: 2 the largest number: is 6 66
The Array Palindrome Number in Java
The Array Palindrome Number in Java       This is a Java simple palindrome number program. In this section you will read how to uses palindrome one dimensional array
How to using Binary Search Array Java ?
How to using Binary Search Array Java ?  Hi, I am beginners in Java Programming Language. I am trying to create small application using Array functions. The problem is that how to use binary search array in Java. Please give
Number in array
Number in array  How to write a program to check the number that we are entered from keyboard is in the given array
Java number calculation using while loop
Java number calculation using while loop In this tutorial, you will learn how... and secondNum inclusive. It also find the sum of all the even numbers between...+=num1; } num1++; } System.out.println("Sum Of Even Numbers: "+sum
Convert Number to Roman Number Using Java
Java Convert Number to Roman Numerals In this section, you will learn how to convert the number to roman number.  To do this, we have created a class named Roman in which we have stored some numbers and their roman numbers
how to authenticate user using TIVOLI api in java?
how to authenticate user using TIVOLI api in java?  Hi, I want to integrate IBM TIVOLI API to create/authenticate users using java code. Please help....... Thanks in advance
how to add to numbers in java
how to add to numbers in java  how to add to numbers in java
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
java program based on array
java program based on array  write a program to create an array of 10 integers in main.accept values from the user in that array .now again ask... count() belonging to a class counter.within count findout how many numbers
Array and input
[ ]={1,2,3,4,5,6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26}; i want to ask user to input one of the above numbers then i want to print the array without the number user input. how will i do tht
Hibernate One to many XML mapping array Example
In this section, you will learn how to do one to many mapping using array to retain mapping order in Hibernate
how to find largest number? - Java Interview Questions
how to find largest number?  this is my java coding: import...); } } i don't know how to add code to find the largest number.. please help... want to find the greater number which user enter on the console? Thanks
Generating Random Numbers to Fill array. Java Beginner needing help!
Generating Random Numbers to Fill array. Java Beginner needing help!  ... the permuted numbers. Make a second array and fill it with the numbers 1 to 10 in order. Pick one of the numbers from the second array randomly, remove it, and write
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... Numbers between 2 and 50: "); for (int number = 2; number <= 50; number
one dimensional array using java
one dimensional array using java  design and implement a java program that will read a file containing numbers and compute the following statistics: the range(low,high) the average and the median
How to Create a ByteBuffer using Byte Array in java.
How to create a ByteBuffer using Byte Array in java.      ..., we will discuss how to creates a buffer using byte array. The ByteBuffer ... Description static ByteBuffer wrap(byte array
how to Insert Array Values Into Separate Rows using java?
how to Insert Array Values Into Separate Rows using java?  how to Insert Array Values Into Separate Rows using java?  class...) { String array[][]={{"1","Angel","Delhi"},{"2","John","Chennai"},{"3","William
How can we know the count/number of elements of an array?
How can we know the count/number of elements of an array?  How can we know the count/number of elements of an array
how to convert string to char array in java without using tochararray
how to convert string to char array in java without using tochararray ...() function. how to convert string to char array in java without using... to char array in java without using tochararray: package my.app; public

Ads