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.
Sagot :
- using System;
- public class Exercise6
- {
- public static void Main()
- {
- int j,n;
- Console.Write("\n\n");
- Console.Write("Display the multiplication table:\n");
- Console.Write("-----------------------------------");
- Console.Write("\n\n");
- Console.Write("Input the number (Table to be calculated) : ");
- n= Convert.ToInt32(Console.ReadLine());
- Console.Write("\n");
- for(j=1;j<=10;j++)
- {
- Console.Write("{0} X {1} = {2} \n",n,j,n*j);
- }
- }
- }
[tex]\huge\underline\mathtt\colorbox{cyan}{™}[/tex]
Thanks for stopping by. We strive to provide the best answers for all your questions. See you again soon. We hope this was helpful. Please come back whenever you need more information or answers to your queries. We're glad you visited Westonci.ca. Return anytime for updated answers from our knowledgeable team.