multiple arithmetic operators : Operator Precedence : Operator C# Examples


C# Examples » Operator » Operator Precedence »

 

multiple arithmetic operators









    
class  MainClass
{

    public  static  void  Main()
    {
        
        System.Console.WriteLine("3  *  4  /  2  =  "  +  3  *  4  /  2);
    }
}
    
   
  
   



Output

3 * 4 / 2 = 6


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Operator
» Operator Precedence