make a negative number positive in javascript code example
Example 1: js make value positive
Math.abs(-4)
Math.abs(4)
Example 2: convert negative number to positive in javascript
Math.abs("the negative number")
Example 3: how to turn a number negative in javascript
-Math.abs(num);
Example 4: makes number negative javascript
Math.abs(num) => Always positive
-Math.abs(num) => Always negative
Example 5: write a program to input a number and display its double and half values using shift operator in python
# Write a program to input a number and display its Double and Half values using SHIFT operator.
print("Hi \nThis is a basic calculator \nwhich doubles or divides into half the value entered in it")
i = int(input("pls enter your number:\n"))
print("what do you want to do? \nwarning: \nenter only the alphabet of the option and no symbols.")
print("you can enter both the options alphabet to get both the values")
print("This program gives and takes only integer value of double, half and input")
opt = input("options:- \na.double\nb.half\n")
if opt == "a":
j = i << 1
print("double", j)
elif opt == "b":
k = i >> 1
print("half:", k)
elif opt == "ab" or opt == "a b" or opt == "ba" or opt == "b a" or opt == " ab" or opt == "ab " or opt == " ab " or opt == " a b" or opt == "a b " or opt == " a b ":
j = i << 1
k = i >> 1
print("number:", i)
print("double:", j)
print("half:", k)
else:
print("inputs are wrong")
exit()
Example 6: how to add a number after each number in an array with a for loop in C++
#include<iostream>
using namespace std;
int main()
{
int a[4];
int i;
for ( i = 0; i < 4; i++ )
a[i] = 0;
for ( i = 0; i < 4; i++ )
cout << a[i] << '\n';
return 0;
}