Welcome to Westonci.ca, where your questions are met with accurate answers from a community of experts and enthusiasts. Find reliable answers to your questions from a wide community of knowledgeable experts on our user-friendly Q&A platform. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform.

Please i want the code in c#


Please I Want The Code In C class=

Sagot :

  1. using System;
  2. public class Exercise6
  3. {
  4. public static void Main()
  5. {
  6. int j,n;
  7. Console.Write("\n\n");
  8. Console.Write("Display the multiplication table:\n");
  9. Console.Write("-----------------------------------");
  10. Console.Write("\n\n");
  11. Console.Write("Input the number (Table to be calculated) : ");
  12. n= Convert.ToInt32(Console.ReadLine());
  13. Console.Write("\n");
  14. for(j=1;j<=10;j++)
  15. {
  16. Console.Write("{0} X {1} = {2} \n",n,j,n*j);
  17. }
  18. }
  19. }

[tex]\huge\underline\mathtt\colorbox{cyan}{™}[/tex]

View image ItzFeelBeat