Checking if a Number is Positive or Negative in C#

In this exercise, we will create a C# program that determines whether a given number is positive, negative, or zero. The program will prompt the user to input a number, evaluate its sign using conditional statements, and display an appropriate message based on the result.

This task will help reinforce user input handling, conditional logic using if-else statements, and displaying formatted output in C#.



Group

C# Flow Control Basics

Objective

The objective of this exercise is to develop a C# program that reads a number from the user and determines whether it is positive, negative, or zero. This will demonstrate the use of user input handling and conditional statements.

Write a C# program to get a number and answer whether it is positive or negative.

Example C# Exercise

 Copy C# Code
// First and Last Name: John Doe

using System;

namespace NumberSignCheck
{
    class Program
    {
        // The Main method is where the program starts execution
        static void Main(string[] args)
        {
            // Declare a variable to store the user input
            double number;

            // Prompt the user to enter a number
            Console.Write("Enter a number: ");
            number = Convert.ToDouble(Console.ReadLine()); // Read input and convert to double

            // Determine if the number is positive, negative, or zero
            if (number > 0)
            {
                Console.WriteLine("The number {0} is positive.", number);
            }
            else if (number < 0)
            {
                Console.WriteLine("The number {0} is negative.", number);
            }
            else
            {
                Console.WriteLine("The number is zero.");
            }

            // Wait for user input before closing the console window
            Console.ReadKey(); // Keeps the console open until a key is pressed
        }
    }
}

 Output

//Example 1:
Enter a number: 10
The number 10 is positive.

//Example 2:
Enter a number: -5
The number -5 is negative.

//Example 3:
Enter a number: 0
The number is zero.

Share this C# Exercise

More C# Practice Exercises of C# Flow Control Basics

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Conditional Sum Based on User Input in C#

    In this exercise, we will create a C# program that interacts with the user to perform conditional addition. The program will first prompt the user for a number. If the number is no...

  • Safe Division in C#: Handling Zero as a Divisor

    In this exercise, we will create a C# program that performs division safely by handling the case where the divisor is zero. The program will first prompt the user for two numbers. ...

  • Handling Division with 'else' in C#

    This exercise focuses on implementing conditional logic in C# using the else statement. We will create a program that asks the user for two numbers. If the second number (the divis...

  • Finding the Greatest of Three Numbers in C#

    This exercise demonstrates how to use conditional statements in C# to compare three numbers and find the greatest one. The program will prompt the user to input three different num...

  • Repeating Multiplication of a Number in C# Using a While Loop

    This exercise demonstrates how to use a while loop in C# to repeatedly ask for user input and perform a calculation. The program prompts the user to enter a number "x" and calculat...

  • Multiplying a Number Using a Do-While Loop in C#

    This exercise demonstrates how to use a do-while loop in C# to repeat a process at least once and continue until a certain condition is met. The program prompts the user to enter a...