License, disclaimer of liability, and limited warranty


: Write a C program to multiply two complex numbers. Create a structure



Download 2,08 Mb.
Pdf ko'rish
bet359/393
Sana05.01.2022
Hajmi2,08 Mb.
#319699
1   ...   355   356   357   358   359   360   361   362   ...   393
Bog'liq
C Programming A Self Teaching Int 1uq45XL

 7: Write a C program to multiply two complex numbers. Create a structure
 
complex
that represents a complex number and write a function that performs complex multiplication.
Given that:
               (a + ib) * (c + id) = (ac – bd) + i(ad + bc)
Solution 7:
 The program is as follows:


#include
#include
struct complex
 {
   int r;
   int i;
};
void main( )
 {
   struct complex a, b, c;
   clrscr( );
   
   printf(“\n Enter first complex number”);
   printf(“\n Enter real part:”);
   scanf(“%d”, &(a.r));
   printf(“\n Enter imaginary part:”);
   scanf(“%d”, &(a.i));
   printf(“\n Enter second complex number”);
   printf(“\n Enter real part:”);
   scanf(“%d”, &(b.r));
   printf(“\n Enter imaginary part:”);
   scanf(“%d”, &(b.i));
   c= multiply(a, b);
   printf(“\n The resultant number is %d + %di”, c.r, c.i);
   getch( );
 }
struct complex multiply(struct complex x, struct complex y)
 {
   struct complex z;
   z.r = (x.r + y.r) – (x.i * y.i);
   z.i = (x.r + y.i) – (x.i * y.r);
   return (z);
 }
NOTE
Students are advised to run this program on their own.

Download 2,08 Mb.

Do'stlaringiz bilan baham:
1   ...   355   356   357   358   359   360   361   362   ...   393




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish