Check if Both Numbers Are Negative in C#

This exercise helps you practice the use of conditionals in C# to determine whether two input numbers are negative or not. The program asks the user to input two numbers and checks if both of them are negative. The result will be displayed based on the condition: if both numbers are negative, a message will be shown; otherwise, another message will inform the user that both numbers are not negative.

Understanding conditional statements such as if and logical operators (&&) is key to writing programs that make decisions based on the user's input.



Group

C# Flow Control Basics

Objective

The objective of this exercise is to write a C# program to prompt the user for two numbers and determine if both numbers are negative or not.

Example C# Exercise

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

using System;

namespace CheckNegativeNumbers
{
    class Program
    {
        // Main method to execute the program
        static void Main(string[] args)
        {
            // Declare variables to store the two numbers
            int number1, number2;

            // Prompt the user to enter the first number
            Console.Write("Enter the first number: ");
            number1 = int.Parse(Console.ReadLine()); // Read and parse the user's input

            // Prompt the user to enter the second number
            Console.Write("Enter the second number: ");
            number2 = int.Parse(Console.ReadLine()); // Read and parse the user's input

            // Check if both numbers are negative
            if (number1 < 0 && number2 < 0)
            {
                // If both numbers are negative, display this message
                Console.WriteLine("Both numbers are negative.");
            }
            else
            {
                // If at least one number is not negative, display this message
                Console.WriteLine("Both numbers are not negative.");
            }
        }
    }
}

 Output

//Case 1:
Enter the first number: -5
Enter the second number: -8
Both numbers are negative.

//Case 2:
Enter the first number: -5
Enter the second number: 3
Both numbers are not negative.

//Case 3:
Enter the first number: 5
Enter the second number: 3
Both numbers are not negative.

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#.

  • Check if One or Both Numbers are Negative in C#

    In this exercise, you will create a C# program that prompts the user to enter two numbers and checks the conditions for negativity. The program will determine whether both numbers ...

  • Display Multiples of Both 3 and 5 in C#

    In this exercise, you'll create a C# program that displays all numbers between 1 and 500 that are divisible by both 3 and 5. This task helps practice the use of loops and the modul...

  • Repeat a Number Based on User Input in C#

    In this exercise, you will write a C# program that asks the user for two inputs: a number and a quantity. The program will then repeat the number as many times as specified by the ...

  • Login Verification Program in C#

    In this task, you'll create a simple login verification program using C#. The program will continuously ask the user to enter their login and password until the correct values are ...

  • Login Attempt Program with Limit in C#

    In this task, you will create a login verification program in C# that asks the user for their login and password. The program will repeat the prompt until the correct login and pas...

  • Division and Remainder Calculation Program in C#

    This C# program is designed to ask the user for two numbers. It then performs the division of the first number by the second and displays both the result of the division and the re...