Algorithm 3 - Opposite number

Beast from the east·2021년 10월 6일
0

Algorithm

목록 보기
3/27

Q.

Description:
Very simple, given a number, find its opposite.

Examples:

1: -1
14: -14
-34: 34

A)

float opposite(float num) {
  return (-num);
}
profile
Hello, Rabbit

0개의 댓글