C#의 백분율 계산

Muhammad Zeeshan 2023년10월12일
C#의 백분율 계산

이 기사에서는 C# 프로그래밍 언어에서 백분율을 계산하는 방법을 보여줍니다.

C#을 사용하여 백분율을 계산하는 프로그램 만들기

시작하려면 다음 라이브러리를 가져와야 합니다.

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

그런 다음 sub1, sub2, sub3sub4라는 네 개의 double 유형 변수를 구성합니다. 모든 과목의 총 점수를 저장하는 total이라는 변수도 있습니다.

또한 per라는 double 유형의 백분율 변수를 작성하십시오.

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%
Muhammad Zeeshan avatar Muhammad Zeeshan avatar

I have been working as a Flutter app developer for a year now. Firebase and SQLite have been crucial in the development of my android apps. I have experience with C#, Windows Form Based C#, C, Java, PHP on WampServer, and HTML/CSS on MYSQL, and I have authored articles on their theory and issue solving. I'm a senior in an undergraduate program for a bachelor's degree in Information Technology.

LinkedIn