21xrx.com
2024-11-25 03:17:51 Monday
登录
文章检索 我的文章 写文章
C++计算三门总分
2023-07-08 08:49:23 深夜i     --     --
C++ 计算 三门 总分

C++ 是一种编程语言,由于其高效和功能强大,已经成为了计算机编程中非常重要的工具之一。在学习 C++ 编程时,了解如何使用 C++ 计算三门总分是非常基础而且非常实用的一个技能。

在 C++ 中,可以使用简单的算术运算符(如加号、减号、乘号和除号)来计算三门总分。下面是一个简单的求和示例:


#include<iostream>

using namespace std;

int main()

{

  int score1, score2, score3;

  int total;

  cout << "Please input the score of the first subject: ";

  cin >> score1;

  cout << "Please input the score of the second subject: ";

  cin >> score2;

  cout << "Please input the score of the third subject: ";

  cin >> score3;

  total = score1 + score2 + score3;

  cout << "The total score is: " << total << endl;

  return 0;

}

在这个示例中,首先声明了三个变量:score1、score2 和 score3,用于存储三科的成绩。然后声明了一个变量 total,用于存储三门总分。

接着,使用 cin 语句从键盘上获取用户输入的成绩,并将它们存储到 score1、score2 和 score3 变量中。

最后使用加号运算符计算三门的总分,并将结果存储到 total 变量中。最后,通过 cout 语句将三门的总分输出到屏幕上。

当然,如果想要计算加权总分,那么只需要在加法运算中加入相应的权重即可。例如,如果数学成绩占 40%,英语成绩占 30%,历史成绩占 30%,那么可以这样计算总分:


total = score1 * 0.4 + score2 * 0.3 + score3 * 0.3;

在这个示例中,每门成绩都与相应的权重相乘,然后将结果相加,得到总分。

总之,使用 C++ 计算三门总分是一项非常基础而且实用的技能。无论是在学习计算机编程还是工作中,都会经常使用到这项技能,因此掌握此技能对于每个程序员来说都非常重要。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复