public static void Main (string[] args)
{
    int c = 100;
    double percent;
    for (int i = 0; i < c; i += 10)
    {
        percent = (i / c) * 100;
    }
Why doesn't the assignment to 'percent' work? I've been running it in debugger and it just says it's 0.
