running into more issues as I run along. I looked around for a few minutes through the forum this time for an answer for this and didn't successfully find anything (I mean most of it contains more complex ways of doing their while loops so I didn't know what to exactly expect.) Here is the c# code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CodingExcercise
{
class Program
{
static void Main(string[] args)
{
int answer;
int number;
Console.WriteLine("Type in the number you desire the multiplication table for!");
number = Convert.ToInt32(Console.ReadLine());
int count = 1;
while (count != 10) ;
answer = number * count;
Console.WriteLine("{0}*{1}={2}", number, count, answer);
count = count + 1;
}
}
}
Thats all of it (I'm mainly just running through basic exercises for doing these operations) I'm trying to post a numbers multiples up to ten.
and also tbh I get a faster reply here then looking through all the closed threads until I find the correct one, sorry if there is already one like this. Thanks!