answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How to create Add square of two complex numbers and print?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you print a number as on or more literal words in PHP?

Create an array like so $numbers = array(); $numbers['0'] = "ZERO"; $numbers['1'] = "ONE"; and so on.. till you decide that's enough then to print it, echo the array with the desired key like so.. Example I print 5 in words echo $numbers['5']; which would print FIVE Good luck


How do you create a print chart?

create chart than print chart


How do you print square using for loops?

how to print "square" using for loop


How do you write a program to print numbers to 50 except prime?

First, create a for loop from a,1 to 50. Inside of that create another for loop b,2 to a-1. If a/b=int(a/b) then you know it is not prime


What BASIC computer command calls letters and numbers up on a screen?

The BASIC computer command that calls letters and numbers up on a screen is the print command.


What is the value of a sister corita print?

email the Corita Art Center staff, with the name of the print or if the print is unmounted you will find a set of numbers on the low left corner of the print. 2 first numbers is the year of the print, second set is the number of the print been printed that year.


Q2 Write a program to print even numbers between 10 and 50?

You can use int i; for (i = 10; i <= 50; i += 2) {//print i} as a program to print even numbers between 10 and 50.


What are the advantages and disadvantages of lithography?

We are doing this stuff right The advantages of lithography are: - It is very fast - It does fast print runs - It is cheap - The images produced are clear and sharp The disadvantages.... - It cannot produced very high quality prints - It cannot do small print runs so people who want to print in small numbers cannot. - The materials are complex to use.


How do you print the numbers in the from 1 1 1 1 2 1 1331?

buy aprinter and somepaper and then go on wordput numbers in and click print and click color and youhave your numbers


How do you write a program to input the side of a square and print its area and perimeter?

1 CLS 2 PRINT "Please to tell me the length of the side of the square." 3 INPUT S 4 PRINT 5 PRINT "The perimeter of the square is "; 4 * S 6 PRINT 7 PRINT "The area of the square is "; S ^ 2 8 PRINT 9 PRINT "That was truly a total blast. Would you like to play again ? 'Y' or 'N' ." 10 INPUT A$ 11 IF A$ = "Y" or A$ = "y" then PRINT "Goody! " : GOTO 2 12 IF A$ = "N" or A$ = "n" then PRINT "Well OK then. Goodbye": END 13 PRINT: PRINT "Please to type a 'Y' to play again, or a 'N' to quit for now." 14 GOTO 10


Where might one create and print a brochure?

The best place to create and print a brochure would be through software programs. For example, Microsoft Office has a program built in, or one could visit VistaPrint to design and print a brochure.


How do you write a programme in basic to assign a number and print its square?

num%=9 CLS PRINT "The square of: "; num%; " = "; num%*num% END