-
假设客车的座位数是9行4列,使用二维数组在控制台应用程序中实现简单的客车
具体要求为:
使用一个二维数组记录客车售票系统中的所有座位号,并在每个座位号上都显示有票,然后用户输入一个坐标位置,按Enter键,即可将该座位号显示为已售。
首先我定义的输入格式为:1,2
个人认为主要知识点伪代码如下
1.字符串分割
char[] separator = { ',' };
splitstrings = str.Split(separator);
2.字符串前后去空
str.Trim()
3.转换类型,如果不是int类型则为false,可以处理异常情况。
int columnNum = 0;
bool isColumn = int.TryParse(column, out columnNum);
先创建如下脚本,然后在Main函数中直接调用即可。
1 public class TicketingSystem 2 { 3 int[,] seatCount = new int[9, 4]; 4 5 public void CheckTicketCount() 6 { 7 bool res = true; 8 String[] splitstrings = { "row", "col"}; 9 char[] separator = { ',' }; 10 while (res) 11 { 12 Console.WriteLine("请输入座位号:"); 13 string str = Console.ReadLine(); 14 splitstrings = str.Split(separator); 15 if (str.Trim() == "Quit") 16 { 17 res = false; 18 Console.WriteLine("结束购票"); 19 return; 20 } 21 22 if (splitstrings.Length < 2) 23 { 24 Console.WriteLine("输入的格式不正确"); 25 continue; 26 } 27 string row = splitstrings[0].Trim(); 28 string column = splitstrings[1].Trim(); 29 30 int rowNum = 0; 31 bool isRow = int.TryParse(row, out rowNum); 32 if (!isRow || rowNum >= seatCount.GetLength(0)) 33 { 34 Console.WriteLine("输入的行不正确"); 35 continue; 36 } 37 38 int columnNum = 0; 39 bool isColumn = int.TryParse(column, out columnNum); 40 if (!isColumn || columnNum >= seatCount.GetLength(1)) 41 { 42 Console.WriteLine("输入的列不正确"); 43 continue; 44 } 45 if (seatCount[rowNum, columnNum] == 1) 46 { 47 Console.WriteLine("该座位已经被购买!"); 48 continue; 49 } 50 seatCount[rowNum, columnNum] = 1; 51 Console.WriteLine(rowNum + "行" + columnNum + "列车票售出"); 52 bool isEmptySeat = false; 53 for (int i = 0; i < seatCount.GetLength(0); i++) 54 { 55 for (int j = 0; j < seatCount.GetLength(1); j++) 56 { 57 if (seatCount[i, j] == 0) 58 { 59 isEmptySeat = true; 60 break; 61 } 62 } 63 if (isEmptySeat) 64 { 65 break; 66 } 67 } 68 69 if (!isEmptySeat) 70 { 71 res = false; 72 Console.WriteLine("车票售完!"); 73 return; 74 } 75 Console.WriteLine(); 76 Console.WriteLine(); 77 } 78 } 79 }
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式