C#里面怎用数组保存用户输入的数据

例如,我要输入一些数据,把它保存起来,在我要查看的时候我还能把之前输入的数据列出来。---------------------------请输入数据1:请输入数据2:..... 例如,我要输入一些数据,把它保存起来,在我要查看的时候我还能把之前输入的数据列出来。 --------------------------- 请输入数据1: 请输入数据2: ...... 请输入数据n: 全部数据已经保存! 输入数字1输出全部数据:1 数据1 数据2 数据3 ..... 数据n 123 456 123 ..... 789 456 789 456 ..... 123 ...... ..... ...... ..... ..... 展开
 我来答
eNsR
2014-07-22 · TA获得超过115个赞
知道答主
回答量:123
采纳率:0%
帮助的人:171万
展开全部
using System; using System.Collections; namespace ConsoleApplication3 { class Program { static int i = 1; static string input = ""; static ArrayList data = new ArrayList(); static void Main(string[] args) { Console.WriteLine("按s开始输入数据,按e退出,按i查看数据"); input = Console.ReadLine(); while (input.ToLower()!= "e") { if (input == "s") inputdata(); else if (input == "i") outputdata(); else { Console.WriteLine("请出入正确的指令,按s开始输入数据,按e退出,按i查看数据"); input=Console .ReadLine (); } } } static void inputdata() { Console.WriteLine("请输入第{0}个数据(按e退出,按i查看数据)", i); string tem = Console.ReadLine(); if (tem.ToLower() != "e" && tem.ToLower()!="i")data.Add(tem); else input = tem; i++; } static void outputdata() { for (int j = 0; j < data.Count; j++) Console.WriteLine("第{0}个数据{1}",j+1, data[j].ToString ()); Console.WriteLine("按s开始输入数据,按e退出,按i查看数据"); input = Console.ReadLine(); } } }
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式