程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c#代碼-有個0和1組成的數組,比如0000111000111000,需要求出出現了幾段1,每段1的位置

c#代碼-有個0和1組成的數組,比如0000111000111000,需要求出出現了幾段1,每段1的位置

編輯:編程綜合問答
有個0和1組成的數組,比如0000111000111000,需要求出出現了幾段1,每段1的位置

如題,出現了兩段1,第一段1的起點是5,終點是7。需要用C#語言實現,請大家提供點思路。謝謝

最佳回答:


 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace codeForCSDN
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Console.WriteLine("請輸入數據:");

            string data = Console.ReadLine();

            int index, i;

            bool flag = false;

            System.Collections.ArrayList indexList = new System.Collections.ArrayList();

            for(index = 0; index < data.Length; index++){

                if(data[index] == '1'){

                    if(!flag){

                        indexList.Add(index);

                        flag = true;
                    }
                }
                else{

                    if (flag) {

                        flag = false;

                        indexList.Add(index);
                    }
                }

            }

           // System.Console.WriteLine(indexList.Count);

            int cont = 1;

            string res;

            for (i = 0; i < indexList.Count; i++) {

                if (i % 2 == 0)
                {

                    res = "第" + cont + "段的起始位置為" + indexList[i];

                    System.Console.WriteLine(res);
                }
                else {

                    res = "第" + cont + "段的結束位置為" + indexList[i];

                    System.Console.WriteLine(res);

                    cont++;
                }


            }

           Console.ReadKey();
        }

    }
}
u012505618
u012505618
suweigu1985
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved