write a program to input a number and find its absolute value
Answers
Answered by
1
Answer:
Void main (double n)
{
Int s=0;
s=Math.abs(n);
System.out.println(s);
}
Similar questions