Multiple operations and precedences Learn programming C#

Lesson:

First contact with C# Sharp


Exercise:

Multiple operations and precedences


Objetive:

Create a C# program to print the result of the following operations:
-1 + 3 * 5
(24 + 5) % 7
15 + (-4) * 6 / 11
2 + 10 / 6 * 1 - 7 % 2


Code:

using System;
public class exercise4
{
    public static void Main()
    {
        System.Console.WriteLine(-1 + 3 * 5);
        System.Console.WriteLine((24 + 5) % 7);
        System.Console.WriteLine(15 + -4 * 6 / 11);
        System.Console.WriteLine(2 + 10 / 6 * 1 - 7 % 2);
    }
}

Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.