發(fā)布時(shí)間:2020-08-06 15:21 作者:獨(dú)孤劍 閱讀:1648
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApp16 { class Program { static void Main(string[] args) { // 數(shù)組 string[] arr = new string[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" }; // 固定長(zhǎng)度間隔 int space = 2; int N = arr.Length; for (int i = 0; i < N; i = i + space) { string temp = ""; int stop = i + space; for (int j = i; j < (stop > N ? N : stop); ++j) { temp += arr[j] + ","; } // 輸出合并 Console.WriteLine(temp); } Console.Read(); } } }
輸出結(jié)果
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對(duì)您有幫助,歡迎給作者打賞