问答详情
源自:4-3 C#算法——求和

4-3

4-3的练习题怎么做

提问者:慕粉1828417622 2016-10-18 08:29

个回答

  • 慕田峪7396379
    2017-08-09 23:48:09

    if可以换成while吗

  • 小小1七爷
    2016-11-08 22:53:49

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

            }

        }

    }


  • sdog
    2016-11-04 16:03:37

    if(x%2==1)

  • 慕粉1828417622
    2016-10-18 09:01:36

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

  • 慕粉1828417622
    2016-10-18 08:33:21

    不会啊