I want to make an array the contains all the integers 0 to 100. However, the only way I know how to make an array is:I don't want to type every number from 0 to 100, so I was wondering if there was a shortcut?
int [] numArray= {0,1,2,3,4,5,6,7,8};
