Upgrade to Pro — share decks privately, control downloads, hide ads and more …

More on C#

Avatar for Ram Sapkota Ram Sapkota
October 25, 2018
180

More on C#

Avatar for Ram Sapkota

Ram Sapkota

October 25, 2018
Tweet

Transcript

  1. Type conversions  ToBoolean  ToByte  ToChar  ToDateTime

     ToDecimal  ToDouble  ToInt16  ToInt32  ToString
  2. Exercise : Make a basic calculator  Input two numbers

    from user and perform addition and subtraction.  If possible add decimal number with a normal number.
  3. Something Interesting to deal with  Signature of method 

    Method overloading  Params modifiers
  4. Conditional operator  And  Or  Not equals 

    Equals  Greater than, less than  Greater than and equals to  Less than and equals to  And their meaningful use
  5. Exercise  Write a program to input marks of 5

    different subjects as Math, Science, English, Nepali and Computer assuming their full marks is 100.  Also calculate percentage obtained and division earned.