Westonci.ca is the best place to get answers to your questions, provided by a community of experienced and knowledgeable experts. Our Q&A platform offers a seamless experience for finding reliable answers from experts in various disciplines. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently.

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