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