sq()

Description

Calculates the square of a number: the number multiplied by itself.

Syntax

sq(x)

Parameter Values

  • x: the number. Allowed data types: any data type.

Return Values

  • The square of the number. Data type: double.

Example Code

void setup() { Serial.begin(9600); int x = 4; double y = sq(x); Serial.print("The square of "); Serial.print(x); Serial.print(" is "); Serial.println(y); } void loop() {}

The result in Serial Monitor:

Newbiely | Arduino IDE 2.3.8
──
File
Edit
Sketch
Tools
Help
Arduino Uno
Newbiely.ino
···
8 Serial.println("Hello World!");
Output
Serial Monitor
Message (Enter to send message to 'Arduino Uno' on 'COM15')
New Line
9600 baud
The square of 4 is 16.00
Ln 11, Col 1
Arduino Uno on COM15
2

※ NOTES AND WARNINGS:

Because of the way the sq() function is implemented, avoid using other functions inside the brackets, it may lead to incorrect results.

This code will yield incorrect results:

int inputSquared = sq(Serial.parseInt()); // avoid this

Use this instead:

int input = Serial.parseInt(); // keep other operations outside the sq function int inputSquared = sq(input);

See Also

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables .

※ OUR MESSAGES