class Program
{
static void Main()
{
int[] integers = new int[ 100 ];
for (int i = 0; i <= 100; i++)
{
integers[ i ] = i + 1;
}
}
}
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanwar RanwaPosted Nov 17, 2018, 6:00 AM
Amit GuptaPosted Nov 17, 2018, 6:08 AM