Looking for reliable answers? Westonci.ca is the ultimate Q&A platform where experts share their knowledge on various topics. Experience the ease of finding reliable answers to your questions from a vast community of knowledgeable experts. Explore comprehensive solutions to your questions from knowledgeable professionals across various fields on our 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