using System;
namespace PracticeArrays
{
class PlayingWithArrays
{
public static void Main(string[] args)
{
//[1][2][3][5]
int[] myCoolNumbers ={0,1,2,3,5,8};//memory
//[0][1][2][3][5][8]
for(int i=0; i < myCoolNumbers.Length; i++)
{
int myNumber = myCoolNumbers[i];
Console.WriteLine(myNumber);
}
}
}
}
I always had a passion for the field of STEM (Science, Technology, Engineering, and Math) and I knew I wanted to do something to make a difference in the world. I just didn’t know where to start. I was an immigrant in a new country, grew up in a tough environment, and wasn’t sure how… Read More