다음 산술 계산을 해보자 -
Sr th> |
|
2
- |
첫 번째 피연산자에서 두 번째 피연산자를 뺍니다
3
* |
두 피연산자 곱하기4
|
/
| 분자 나누기 numerator
다음은 다음을 사용하여 산술 계산을 수행하는 예입니다. 위의 연산자 -
|
Example 라이브 시연 | using System;
namespace OperatorsApplication {
class Program {
static void Main(string[] args) {
int a = 40;
int b = 20;
int c;
c = a + b;
Console.WriteLine("Addition: {0}", c);
c = a - b;
Console.WriteLine("Subtraction: {0}", c);
c = a * b;
Console.WriteLine("Multiplication: {0}", c);
c = a / b;
Console.WriteLine("Division: {0}", c);
Console.ReadLine();
}
}
}
로그인 후 복사
OutputAddition: 60
Subtraction: 20
Multiplication: 800
Division: 2 로그인 후 복사 |
위 내용은 기본 산술 계산을 수행하는 C# 프로그램 작성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!