csharp_conversions_tasks.md - brainchildservices/curriculum GitHub Wiki

Conversion Qs:

  1. Use the correct conversion method to convert the int variable to a string:

                         int myInt = 10;
                         Console.WriteLine(Convert._______(______));
    
  2. Fill in the missing parts to print a number put in by the user:

                         Console.WriteLine("Think of a number:");
                         int myNum = Convert.________(Console._______);
                         Console.WriteLine("Your number is: " + myNum);
    
  3. Create a program to convert from celsius degrees to Fahrenheit and Kelvin.

  4. slides already contain some tasks: