Computer Science, asked by yoo98, 10 months ago

write a basic program to accept ten number if the number is positive then display as it is if the number is negative then convert it into positive and display it​

Answers

Answered by Rohini7711
0

HERE IS YOUR ANSWER

In the below program, to find whether A is positive, negative or zero; first the number is taken as input from the user using scanf in, and then A is checked for positive using statement and, and operators.

Below is the C program to find whether a number is positive, negative or zero.

#include <stdio.h>

  

int main()

{

    int A;

  

    printf("Enter the number A: ");

    scanf("%d", &A);

  

    if (A > 0)

        printf("%d is positive.", A);

    else if (A < 0)

        printf("%d is negative.", A);

    else if (A == 0)

        printf("%d is zero.", A);

  

    return 0;

}

Output:

Enter the number A =: -54 -54 is negative.

PLEASE MARK AS BRAINLIEST

Similar questions