answersLogoWhite

0

Since you didn't specify, I will give you the answer for a TI 83 Plus Silver Addition

:Input A

:Input B

:ClrHome <--found in the prgm menu with input

:Output(1,1,A+B) <--Output also found in same menu as ClrHome

:Output(4,1,A*B)

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you write a VBnet program to find the prime numbers between 100 to 200?

VBnet program to find the prime numbers between 100 to 200?


Write a program to find the product of two numbers using Halving and Doubling method?

i need this answer


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

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


What is c program to calculate product of all even numbers from entered number down to 1?

c is programming laungage


What a program that accepts two numbers and tell whether the product of the two number is equal to or greater than 1000?

You can create a simple program in Python to achieve this. The program will prompt the user to input two numbers, calculate their product, and then check if the product is equal to or greater than 1000. If it is, the program will print a message confirming that; otherwise, it will indicate that the product is less than 1000. Here's a quick example: num1 = float(input(&quot;Enter the first number: &quot;)) num2 = float(input(&quot;Enter the second number: &quot;)) if num1 * num2 &gt;= 1000: print(&quot;The product is equal to or greater than 1000.&quot;) else: print(&quot;The product is less than 1000.&quot;)


What is the difference between qualitative and quantitative prediction?

Qualitative predictions are predictions based on quality. How effective is the product, or program expected to be? Quantitative predictions are based on quantities, in other words, numbers. How many people, products or units are expected.


Which egghead is leaving the program?

No egghead is leaving, a sixth one is joining the show.


Write a program to accept 2 numbers and tell whether the product of the two number is equal to or greater than 1000?

C programm


What is the difference between photoshop and inkscape?

Photoshop is a raster/pixel-based program, and is also a product you have to purchase. Inkscape is a vector drawing program that's free.


What are all the whole numbers between 1 to 1000000000?

All of the whole numbers between one and a billion. Honestly, we're not robots here. Write a program and do it yourself, if you really need them.


Prime numbers between 1 to 10 in microprocessor 8085?

program to find prime number in 8085 microprocessor


Write a program to print even and odd numbers in between 1 to 10?

for (int i = 2; i < 10; i ++) printf("%d\n", i); You did say even and odd numbers between 1 and 10. That's allnumbers between 1 and 10.