더하기, 빼기 등과 같은 산술 연산을 수행하는 데 사용됩니다.
연산자 | 설명 | 예시 | a=20,b=10 | 출력 |
---|---|---|---|---|
+ | 추가 | a+b | 20+10 | 30 |
- | 빼기 | a-b | 20-10 | 10 |
* | 곱하기 | a*b | 20*10 | 200 |
/ | 사업부 | a/b | 20/10 | 2(몫) |
% | 모듈식 부문 | a%b | 20%10 | 0(나머지) |
알고리즘
아래에 언급된 알고리즘을 따르십시오 -
START Step 1: Declare integer variables. Step 2: Read all variables at runtime. Step 3: Perform arithmetic operations. i. a+b ii. a-b iii. a*b iv. b/a v. a%b Step 4: Print all computed values.
프로그램
다음은 산술 연산자를 계산하는 C 프로그램입니다 -
#include<stdio.h> main (){ int a,b; printf("enter a,b:\n"); scanf("%d%d",&a,&b); printf("a+b=%d\n",a+b); printf("a-b=%d\n",a-b); printf("a*b=%d\n",a*b); printf("b/a=%d\n",b/a); printf("a%b=%d\n",a%b); }
출력
다음 출력이 표시됩니다 -
enter a,b: 40 60 a+b=100 a-b=-20 a*b=2400 b/a=1 ab=40