Java程序示例,用于计算总分和百分比
我们将演示如何使用 Java 程序计算总分和百分比。 总分是指所有可用分数的总和,而术语百分比是指计算分数除以总分并乘以所得的数字100。
percentage_of_marks = (obtained_marks/total_marks) × 100
示例 1
这是一个Java程序,用于演示如何计算总分和百分比。
// Java Program to demonstrate how is Total marks and Percentages calculated import java.io.*; public class TotalMarks_Percent1 { public static void main(String[] args){ int n = 8, t_marks = 0; float percent; // creation of 1-D array to store marks int marks[] = { 69, 88, 77, 89, 98, 100, 57, 78 }; // calculation of total marks for (int j = 0; j < n; j++) { t_marks += marks[j]; } System.out.println("Total Marks is: " + t_marks); // calculate the percentage percent = (t_marks / (float)n); System.out.println("Total Percentage is: " + percent + "%"); } }
输出
Total Marks is: 656 Total Percentage is: 82.0%
在上面的Java程序中,正在计算学生在8门科目中获得的总分和百分比。获得的分数存储在名为marks []的数组中。
总分数被计算并存储在一个名为t_marks的变量中,它们的百分比被计算并存储在一个名为percent的变量中。
这两个值都会进一步显示在控制台上。
Example 2
的中文翻译为:示例2
这是一个Java程序,用于演示从用户输入中计算五个科目的总分和百分比。
// Java program to compute the total marks and percentage of five subjects taken as input from the user import java.util.Scanner; class TotalMarks_Percent2{ public static void main(String args[]){ float FLAT, COA, Networking, Python, AI; double t_marks, percent; Scanner mk =new Scanner(System.in); // Take marks as input of 5 subjects from the user System.out.println("Input the marks of five subjects \n"); System.out.print("Enter marks of FLAT:"); FLAT = mk.nextFloat(); System.out.print("Enter marks of COA:"); COA = mk.nextFloat(); System.out.print("Enter marks of Networking:"); Networking = mk.nextFloat(); System.out.print("Enter marks of Python:"); Python = mk.nextFloat(); System.out.print("Enter marks of AI:"); AI = mk.nextFloat(); // Calculation of total marks and percentage obtained in 5 subjects t_marks = FLAT + COA + Networking + Python + AI; percent = (t_marks / 500.0) * 100; // display the results System.out.println("Total marks obtained in 5 different subjects ="+t_marks); System.out.println("Percentage obtained in these 5 subjects = "+percent); } }
输出
Input the marks of five subjects Enter marks of FLAT:98 Enter marks of COA:56 Enter marks of Networking:67 Enter marks of Python:89 Enter marks of AI:78 Total marks obtained in 5 different subjects =388.0 Percentage obtained in these 5 subjects = 77.60000000000001
在上面的Java程序中,从用户那里输入了5个不同科目的成绩,分别是 FLAT,COA,Networking,Python 和 AI。
标记作为用户的输入并存储在浮点数据类型的变量中。此外,这些科目获得的总分是通过将每个科目的分数相加来计算的,并存储在名为t_marks的变量中。
最后,程序会显示指定科目的总分及其百分比。
本文阐明了计算总分及其百分比的两种方法。文章首先讨论了学期百分比和总分。第一种方法讨论的是不接受用户输入的方法,而第二种方法则将分数的值作为用户的输入,计算并显示分数的总和和百分比。
以上就是Java程序示例,用于计算总分和百分比的详细内容,更多请关注其它相关文章!