迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

C# 中的百分比计算

作者:迹忆客 最近更新:2024/02/01 浏览次数:

本文将演示如何在 C# 编程语言中计算百分比。


创建一个使用 C# 计算百分比的程序

首先,我们必须导入以下库。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

然后构造四个 double 类型变量,分别命名为 sub1sub2sub3sub4。还有一个名为 total 的变量将存储所有科目的总分。

另外,创建一个名为 perdouble 类型百分比变量。

double sub1, sub2, sub3, sub4, total;
double per;

我们现在可以使用提供的公式计算百分比。

per = total / 4;  // Here "total" holds the total marks of all subjects, and "4" is the total number
                  // of subjects.

完整源代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class PercentageCalculation {
  static void Main(string[] args) {
    double sub1, sub2, sub3, sub4, total;
    double per;
    Console.Write("Enter marks of subjects to find out the percentage. \n");
    Console.Write("Input  the marks of Subject1: ");
    sub1 = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input  the marks of Subject2: ");
    sub2 = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input  the marks of Subject3: ");
    sub3 = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input  the marks of Subject4: ");
    sub4 = Convert.ToInt32(Console.ReadLine());
    total = sub1 + sub2 + sub3 + sub4;
    per = total / 4;
    Console.Write("Percentage = {0}%\n", per);
  }
}

输出:

Enter marks of subjects to find out the percentage.
Input  the marks of Subject1: 34
Input  the marks of Subject2: 45
Input  the marks of Subject3: 56
Input  the marks of Subject4: 45
Percentage = 45%

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Linux 上的开发配置 C#

发布时间:2024/02/02 浏览次数:192 分类:编程语言

本文介绍如何设置 C# 语言以在 Linux 上进行开发。如果你对在 Linux 中开发 C# 应用程序的方法感兴趣,这篇文章是专门为你准备的。

C# 中的 Telnet 库

发布时间:2024/02/02 浏览次数:133 分类:编程语言

本教程介绍 Telnet 库并演示 C# 中的简单 Telnet 界面。本教程将解释 Telnet 库并用 C# 演示一个简单的 Telnet 接口。C# 中的 Telnet 库

C# 中的 Graph 库

发布时间:2024/02/02 浏览次数:172 分类:编程语言

在本文中,我们将了解什么是图、QuickGraph 库,以及 C# 中使用的工具。假设你有一个项目,你现在必须处理活动依赖关系的网络表示;在这个项目上工作的最佳方式是什么?答案是图。

C# 中的 goto 语句

发布时间:2024/02/02 浏览次数:136 分类:编程语言

本教程演示了如何在 C# 中使用 goto 以及何时使用它会有所帮助本教程将演示如何在 C# 中使用 goto 语法,并提供一些代码中的实际使用示例。

C# 中的 App.Config

发布时间:2024/02/02 浏览次数:143 分类:编程语言

本教程解释了 C# 中的 App.Config 是什么以及如何使用它 本教程将解释 C# 项目中的 App.Config 文件并演示如何使用它。

在 C# 中声明全局变量

发布时间:2024/02/02 浏览次数:126 分类:编程语言

遗憾的是,没有内置方法可以在 C# 中声明一个真正的全局变量。为了实现这一目标,我们必须依靠一些用户定义的方法。通过在 C# 的公共类中定义 public static 变量来声明全局变量

C# 中变量名前的@符号

发布时间:2024/02/02 浏览次数:111 分类:编程语言

本文解释了 C# 中变量名前的 @ 符号的含义。本文解释了 C# 中变量名前的 @ 符号的含义。C# 中的@符号是什么

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便