1
Answer

for loop assigning value i so loop end count is 8

Photo of taks kamps

taks kamps

6y
406
1
using System;

namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
int j;
int count = 0;

i =

for(int i = 0; i <= j; i++)
{
count++;
}
Console.WriteLine(count);
}
}
}

Answers (1)