answersLogoWhite

0

What is input in math form?

Updated: 9/24/2023
User Avatar

Wiki User

9y ago

Best Answer

If you are referring to this in terms of programming, then let's say I built a pgm that will prompt you to input an integer and my pgm will return the square of your "input"

Looks like this:

Enter a number and I will square it: 12

12 squared = 144

Here it is in C++

<#include iostream.h> //input-output stream STL

<#include math.h> //to make sure i dont need to reinvent the wheel

int input_number; //allocate memory for the input

int square; //same for the output

int main{

cout << "Enter a number and I will square it: ";

cin >>input_number;

square = input_number^2;

cout<< input_number << "squared = " << square <

return 0;

}

In Pseudo:

Read(number)

Square(number)

Print number and it's square

There is no "input form" for pencil and paper math, just plugging in numbers, say we have the following:

f(x) = x + 1

You would say or write "what is f of 2?"

I would reply "three"

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is input in math form?
Write your answer...
Submit
Still have questions?
magnify glass
imp