还记得怎样判断奇偶数吗?能够被2整除的数字就是偶数,否则是奇数。
右边的程序尝试求 1-30 的奇数的和,请在第 15 行填上累加的筛选条件,看看你能不能完成这个功能。
using System; using System.Collections.Generic; using System.Text; namespace Test { class Program { static void Main(string[] args) { int x = 1; int sum = 0;//和,初始化为0 while (x <= 30)//循环条件 { if ()//筛选条件 sum += x; x++; } Console.Write("1-30奇数的和:"+sum); } } }