为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

5 回答

if可以换成while吗

0 回复 有任何疑惑可以回复我~

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);

        }

    }

}


0 回复 有任何疑惑可以回复我~

if(x%2==1)

0 回复 有任何疑惑可以回复我~

额 我学晚了 人都学完走了 没人鸟我

0 回复 有任何疑惑可以回复我~

不会啊

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信