Posts

Showing posts from August, 2018

C# Code to Convert Temperature from degree Celcius to degree Fahrenheit

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Operators_A {     class Program     {         static void Main(string[] args)         {             /*              * 1. Arithmetic Operators              *  a. + (Addition)              *  b. - (Subtraction)              *  c. / (Division)              *  d. * (Multiplication)              *  e. % (Modulus, Remainder)              *  f. ++ (Increment)              *  g. -- (Decrement)              */  ...