xay dung cau truc so phuc va cac phep toan
/*xay dung cau truc so phuc va cac phep toan*/
#include<stdio.h>
#include<conio.h>
typedef struct
{
float a;
float b;
}sophuc;
sophuc phepcong(sophuc x,sophuc y)
{ sophuc tong;
tong.a=x.a+y.a;
tong.b=x.b+y.b;
return tong;
}
sophuc phepnhan(sophuc x,sophuc y)
{
sophuc tich;
tich.a=x.a*y.a-x.b*y.b;
tich.b=x.a*y.b+y.a*x.b;
return tich;
}
int main()
{
sophuc x,y,tong,tich;
printf("mhap phan thuc va phan ao cua so phuc thu nhat:");
scanf("%f%f",&x.a,&x.b);
printf("mhap phan thuc va phan ao cua so phuc thu hai:");
scanf("%f%f",&y.a,&y.b);
tong=phepcong(x,y);
printf("
tong cua hai so phuc la: %.2f+%.2fi",tong.a,tong.b);
tich=phepnhan(x,y);
printf("
tich cua hai so phuc la: %.2f+%.2fi",tich.a,tich.b);
getch();
return 0;
}
Bạn đang đọc truyện trên: AzTruyen.Top