I'm sure this is a stupid question but I'm a newbie!
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
var myInt = ((1000/2048) * 1536);
Console.WriteLine(myInt);
}
}
}
Output is: 0
Can someone tell me how to get the correct number (750)?