猿问

用while循环语句计算100以内所有的奇数之和

慕粉1540501205
浏览 5374回答 3
3回答

asd8532

#include <iostream> using namespace std; int main(){ int i = 1; int j = 0; while (i < 100) {    j += i;    i += 2; } cout<<j<<endl; return 0; }

花开花落_青藤

int i = 0;int j= 0;while (i++ < 100){if (i%2 == 1){j += i;}}
随时随地看视频慕课网APP
我要回答