Python語言計算1到10中偶數項的和

實際上就是計算+2+4+6+8+10的值,理論上咱們獲得30,那麼在Python中的語言是 i=0 n=0 while i<11:     n=n+i     i=i+2 print n 很是簡單獲得spa 30im
相關文章
相關標籤/搜索