• 2021-04-14
    有以下程序 main() { int i,s=1; for (i=1;i<50;i++) if((i%5==0)&&(i%3==0)) s+=i; printf("%d\n",s);} 程序的输出结果是(  )