Algorithm 4 - Return Negative
Q.
Description:
In this simple assignment you are given a number and have to make it negative. But maybe the number is already negative?
Example:
makeNegative(1); // return -1
makeNegative(-5); // return -5
makeNegative(0); // return 0
Notes:
The number can be negative already, in which case no change is required.
Zero (0) is not checked for any specific sign. Negative zeros make no mathematical sense.
A)
int makeNegative(int num)
{
return (num < 0 ? num : -num);
}
another solution
int makeNegative(int num)
{
return -abs(num);
}
-> <stdlib.h> // abs() Function / https://blockdmask.tistory.com/335
Author And Source
이 문제에 관하여(Algorithm 4 - Return Negative), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@ad-astra/Algorithm-4-Return-Negative
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
int makeNegative(int num)
{
return (num < 0 ? num : -num);
}
another solution
int makeNegative(int num)
{
return -abs(num);
}
-> <stdlib.h> // abs() Function / https://blockdmask.tistory.com/335
Author And Source
이 문제에 관하여(Algorithm 4 - Return Negative), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ad-astra/Algorithm-4-Return-Negative저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)