吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1963|回复: 8
收起左侧

[已解决] c# 简单售票系统,出现错误(已解决)

  [复制链接]
Zhenlang 发表于 2021-9-10 09:48
本帖最后由 Zhenlang 于 2021-9-10 10:06 编辑

我在学习C#的时候,跟视频学习做简单的售票系统,但是我的代码输出结果跟视频上不一样,求大佬指出问题。
hXFmGR.png
问题代码

using System;
using System.Threading.Tasks;

namespace Demo
{
    class Program
    {
        static void Main(String[] args)
        {
            Console.Title="简单客车售票系统";
            string[,] zuo = new string[9, 4];
            for (int i=0;i<9;i++) 
            {
                for (int j=0;j<4;j++) 
                {
                    zuo[i, j] = "【有票】";
                }
            }
            string s = string.Empty;
            while (true) 
            {
                Console.Clear();
                Console.WriteLine("   简单的客车售票系统\n");
                for (int i = 0; i < 9; i++)
                {
                    for (int j = 0; j < 4; j++)
                    {
                        Console.WriteLine(zuo[i, j]);
                    }
                    Console.ReadLine();
                }
                Console.Write("请输入座位号(0,2),如果输入的q的化,则退出程序:");
                s = Console.ReadLine();
                if (s == "q")
                {
                    break;
                }
                string[] ss = s.Split(',');
                int row = int.Parse(ss[0]);
                int column = int.Parse(ss[1]);
                zuo[row, column] = "已售";
            }  
        }
    }
}

hXVEOx.png
解决成功后的代码

using System;
using System.Threading.Tasks;

namespace Demo
{
    class Program
    {
        static void Main(String[] args)
        {
            Console.Title="简单客车售票系统";
            string[,] zuo = new string[9, 4];
            for (int i=0;i<9;i++) 
            {
                for (int j=0;j<4;j++) 
                {
                    zuo[i, j] = "【有票】";
                }
            }
            string s = string.Empty;
            while (true) 
            {
                Console.Clear();    
                Console.WriteLine("   简单的客车售票系统\n");
                for (int i = 0; i < 9; i++)
                {
                    for (int j = 0; j < 4; j++)
                    {
                        Console.Write(zuo[i, j]);
                    }
                    Console.WriteLine();
                }
                Console.Write("请输入座位号(0,2),如果输入的q的化,则退出程序:");
                s = Console.ReadLine();
                if (s == "q")
                {
                    break;
                }
                string[] ss = s.Split(',');

                int row = int.Parse(ss[0]);
                int column = int.Parse(ss[1]);
                zuo[row, column] = "【已售】";
            }
        }
    }
}

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

onedayismyway 发表于 2021-9-10 09:54
for (int j = 0; j < 4; j++)
                    {
                        Console.WriteLine(zuo[i, j]);
                    }
                    Console.ReadLine();这行代码多余,加上这句话,就需要每输出一列都要输入一次或者按一次回车操作。

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
Zhenlang + 1 + 1 我很赞同!

查看全部评分

 楼主| Zhenlang 发表于 2021-9-10 09:55
onedayismyway 发表于 2021-9-10 09:54
for (int j = 0; j < 4; j++)
                    {
                        Console.WriteLine(zuo); ...

大佬yyds,谢谢解决了
 楼主| Zhenlang 发表于 2021-9-10 10:05
Summer大大 发表于 2021-9-10 09:59
for (int i = 0; i < 9; i++)
                {
                    for (int j = 0;  ...

我这边没分了,但是也很感谢你
aroundoft 发表于 2021-9-10 10:22
大佬666,学习到了
hxp.china.sh 发表于 2021-9-10 10:52
赞一下,虽然看不懂,回一下贴
suifenging 发表于 2021-9-10 13:32
C#的怎么也要画个界面啊
 楼主| Zhenlang 发表于 2021-9-10 14:45
suifenging 发表于 2021-9-10 13:32
C#的怎么也要画个界面啊

我是菜鸡,不会搞
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 23:02

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表