
我们将演示如何使用 Java 程序计算总分和百分比。 总分是指所有可用分数的总和,而术语百分比是指计算分数除以总分并乘以所得的数字100。
percentage_of_marks = (obtained_marks/total_marks) × 100
这是一个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的变量中。
立即学习“Java免费学习笔记(深入)”;
这两个值都会进一步显示在控制台上。
《PHP设计模式》首先介绍了设计模式,讲述了设计模式的使用及重要性,并且详细说明了应用设计模式的场合。接下来,本书通过代码示例介绍了许多设计模式。最后,本书通过全面深入的案例分析说明了如何使用设计模式来计划新的应用程序,如何采用PHP语言编写这些模式,以及如何使用书中介绍的设计模式修正和重构已有的代码块。作者采用专业的、便于使用的格式来介绍相关的概念,自学成才的编程人员与经过更多正规培训的编程人员
341
这是一个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程序示例,用于计算总分和百分比的详细内容,更多请关注php中文网其它相关文章!
java怎么学习?java怎么入门?java在哪学?java怎么学才快?不用担心,这里为大家提供了java速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号