User profile: xXxFarriexXx

User info
User name:xXxFarriexXx
Old user name:xXnoobgirlXx
Name:Natalie
Location:Mississippi
History
Joined:
Number of posts:10
Latest posts:

Looping Help
THANK YOU~! I'm such an idiot...

Looping Help
For this program i had to change and input file and make a output file showing the name grades and a...

Help multiplying complex numbers. I cant seem to figure out how to get the math part sorted out correctly. Can anyone help?
Nevermind I got it~ Thanks so much for the help its very much appreciated :)

Help multiplying complex numbers. I cant seem to figure out how to get the math part sorted out correctly. Can anyone help?
[code] r = (n1.r * n2.r) - (n1.i * n2.i); i = n1.r * n2.r + n1.i * n2.r ; r + i * (i);...

Help multiplying complex numbers. I cant seem to figure out how to get the math part sorted out correctly. Can anyone help?
[code] // s Complex Numbers.cpp : This program should allow the user to add, subtract, and multiply ...