Home Answers Viewqa Java-Interview-Questions sum and average of grades

 
 


rhoxart faye rosario
sum and average of grades
2 Answer(s)      2 years and 3 months ago
Posted in : Java Interview Questions

how to print a program which is sum and average of Korean (90), English(85), Mathematics(78), Biology(65), Chemistry(83)?

View Answers

February 8, 2011 at 3:27 PM


Java Find sum and average

class FindSum 
{
    public static void main(String[] args) 
    {
   int Korean =90, English =85, Mathematics=78, Biology= 65, Chemistry=83;
   int sum=Korean+English+Mathematics+Biology+Chemistry;
   int average=sum/5;
   System.out.println("Sum: "+sum);
   System.out.println("Average: "+average);
    }
}

March 9, 2011 at 2:11 PM


Average Age of my class?









Related Pages:
sum and average of grades
sum and average of grades  how to print a program which is sum and average of Korean (90), English(85), Mathematics(78), Biology(65), Chemistry(83
Grades
: -Average Grade -Display lowest grade -Display highest grade -Sort and display grades in ascending order -Search for a student by name. Any help much
Average
Average   I have created a file that reads in a text file for a combo..., assignments, etc.) so I can have the average of each item. I then need to graph...); } }); lblGrades.setText("Grades"); txtGrades.setToolTipText
Calculate sum and Average in java
Calculate sum and Average in java  How to calculate sum and average.... Description:- In this example we are calculating sum and average of n numbers... the sum by the total number of numbers, we have determined the average of numbers
Finding Average in JSP
; <% float grades[] = {98, 99, 100, 97, 78, 96}; float sum, average...++) { sum = grades[j] + sum; } average = sum...Finding Average in JSP      
calculate average
calculate average   Design and write a java program to determine all three digit numbers such that the sum of the cubes of the digits is equal... and write a program and calculate your final average in this course. The details
SQL Average Count
SQL Average Count       Average Count in SQL is used to count the aggregate sum of any field... example ,which helps you to calculate the average count of any records specified
Mean - average
Java NotesMean - average Computing the arithmetic average (mean) can... sum = 0; // sum of all the elements for (int i=0; i<p.length; i++) { sum += p[i]; } return sum / p.length; }//end method mean Question
Highest average score among 25 students
Highest average score among 25 students  a program that prompts the user to enter grades of 25 students in a class and grade them into 4 lessons (grades should range between 10 and 20, otherwise the user is prompted to enter
SQL Average Count
SQL Average Count       Average Count in SQL is used to count the aggregate sum of any field... example ,which helps you to calculate the average count of any records specified
sum
sum  a program to find the sum of the alternative diagit of it ex- no=123456 sum=1+3+5=9
sum and avg function using HQL.
calculates sum of salary as- sum(emp.salary) and average of salary as- avg...sum and avg function using HQL.  How to use sum and avg function in HQL?   HQL supports many aggregate functions. Sum and avg are some
sum
; sum=sum+s; if(i==n){ System.out.print(s...+"+"); } System.out.print("\nSum of the series : "+sum
sum
sum
sum
sum
sum
sum
sum
sum
Determine Average by removing Largest and Smallest Number
into a variable 'sum' which is further used in determining the average. Here is the code...[i]; } System.out.println("Final Score: " + sum); int average = sum / 8...Determine Average by removing Largest and Smallest Number In this section, you
Change the name of the grades
Change the name of the grades  Hi, i'm developing with polar chart and i want to change the name of the grades, for example: add("variable name",5) insted of add(20, 5). Somebody know how to do it? Tanks
Student average
to maintain this status is to maintain an average not below 1.8. write a java program... should display the average grade of the student and would display the message...: 1.2 Enter number of units: 1 you got an average of 1.59 congratulation
Class Average Program
condition for sum values. Then calculate the value this method "average... Class Average Program     ... will learn how to use java program for displaying average value. The java instances
sum in JTable
sum in JTable  how to calculate sum from JTable's one field like total
sum of the series
sum of the series  Program to sum the series 1+1/1!+1/2!+1/3!+....n
Average Age of my Class?
Average Age of my Class?  average age of my class
Sum of seris
Sum of seris  Program to find the sum of the following series using a function declaration. sum=x-(xxx)/3!+(xxxxx)/5!-(xxxxxxx)/7!+.....(xx....x)/n!. Where n and x are entered from the keyboard
Sum of integers
Sum of integers  A Java program that reads an integer value from the user and displays i) the sum of all even integers between 1 and the input value, both inclusive. ii) The sum of all odd integers between 1 and the input
how to print the average of each column of 2d n*m array using java
how to print the average of each column of 2d n*m array using java  ... the content of file.now i want to calculate mean(average) of each column present...++) { System.out.println("Sum of column: "+(i+1)+": "+column[i
compute the average of degrees
compute the average of degrees  using c++ language , write a program to do the following 1 enter three degrees of a student by the user . 2 compute the average of his degrees
SQL Average
SQL Average       SQL Average, the part of Aggregate Function. SQL Average is used to compute average value of the records in a table of the database. Understand
PHP Get Average - PHP
PHP Get Average  I am writing a method to calculate the average rating of the posted answers? can anyone help me with the method to calculate rating in PHP. In my code, we are providing maximum four options to the user to rate
Average of Array
Average of Array       In this section, we will learn how to get an average of array. For this, first... that calculates the average of array (result/nums.length). And finally it will display
Calculate an average Age of my Class?
Calculate an average Age of my Class?  average age of my class
SQL Aggregate Queries
Sum, Count, Average, Maximum, Minimum  etc. Understand with Example...); AVG Functions : The AVG (average) function is used to provide the mathematical average of a series of values
SQL Aggregate Functions Where Clause
to perform  various Functions like Sum, Count, Average, Maximum and Minimum. Understand...: The Query returns you only those columns id, name and sum of the marks that ...; select id, name, sum(marks) as 'total marks' from stu where name
MySQL Average Command
MySQL Average Command This example illustrates how to execute the Average command in MySQL. In this example we create a select query to find the average of 'lastAccess' field.   Query  
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...=input.nextInt(); long sum=0; for(int i=1;i<=n;i++){ sum+=i
Java Not running - Java Beginners
++) { sum += grades[i]; } average = sum / grades.length...; grades.length; i++) { sum += grades[i]; } average = sum / grades.length... to represntation of each score into a double in .JSP file double sum, average
Sum - JSP-Servlet
the total sum of items from database using Java servlet or Jsp and html form. It should display the affected rows and the total sum of all in a seperate column..., Sum Into Database Salary
sum of fibonacci series
sum of fibonacci series  Write a Java program to print Fibonacci series upto n and find their sum also. 0+1+1+2+3+5+8+13+21ΓΆβ?¬Β¦ΓΆβ?¬Β¦ΓΆβ?¬Β¦ΓΆβ?¬Β¦=sum   Hi, Please see the thread Fibonacci program. Thanks

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.