반응형
#복소수 #합 #덧셈 #곱셈 #곱 #크기
복소수의 곱셈
#include <stdio.h>
struct complex {
double real;
double imag;
};
int main()
{
struct complex c1 = { 1.2, 2.4 };
struct complex c2 = { 1.1, 2.2 };
struct complex c;
c.real = c1.real * c2.real - c1.imag * c2.imag;
c.imag = c1.imag * c2.real + c1.real * c2.imag;
printf("%f, %f\n", c.real, c.imag);
return 0;
};
복소수의 덧셈
https://gonyzany.tistory.com/201
복소수의 크기
https://gonyzany.tistory.com/203
반응형
'C_C++' 카테고리의 다른 글
(C언어) 문자열 검색: strstr() 함수 (0) | 2022.12.10 |
---|---|
(C언어) 복소수의 크기 (0) | 2022.12.07 |
(C언어) 복소수의 합 (0) | 2022.12.07 |
(C언어) 피보나치 수열 (재귀함수) (0) | 2022.12.04 |
(C언어) 10진수를 16진수로 변환하기 (0) | 2022.12.02 |