慕粉1828417622
2016-10-18 08:29
4-3的练习题怎么做
if可以换成while吗
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 (x%2!=0)//筛选条件
sum += x;
x++;
}
Console.Write("1-30奇数的和:"+sum);
}
}
}
if(x%2==1)
额 我学晚了 人都学完走了 没人鸟我
不会啊
C#开发轻松入门
254119 学习 · 1459 问题
相似问题
回答 2
回答 2