void setup() {
Serial.begin(9600);
double result = pow((103.45 * 122.3 + (122.3 - 103.45)), 2);
Serial.print("Result: ");
Serial.print(result);
}
void loop() {
}
void setup() {
Serial.begin(9600);
double result = pow((103.45 * 122.3 + (122.3 - 103.45)), 2);
Serial.print("Result: ");
Serial.print(result);
}
void loop() {
}