• 2021-04-14
    中国大学MOOC: 已知程序如下,当程序行(60)执行了3次以后,Product和Counter的值分别为_____。(10)main()(20){intcounter;(30)...//输入N值的语句,略(40)longproduct=1;(50)forcounter=1toNstep2(60){product=product*counter;}(70)returnproduct;(80)}