关一什么事初始值不是二吗
for(int i = 1; i <= 50; i++){
// 代码块
}
num初始值为1,每次加一,因为是1--50之间,为1的时候至少运行一次,如果初始值为2,那么区间就变为2--50了
for(int i=1;i<50;i++){ 代码块 }