qq_43412960 2018-11-20 15:42 采纳率: 75%
浏览 1468
已采纳

C#字符串和数组类型转换问题

图片说明
图片说明
图片说明
![图片说明](https://img-ask.csdn.net/upload/201811/20/1542728456_801535.png)图片说明
图片说明
图片说明
想输入的字符串数据转为逆序的整数数组,不清楚错误怎么改(这是新建的类文件,主文件只是两个输入参数的语句)另外,a.后面为啥不显示一系列字符串方法?

  • 写回答

1条回答 默认 最新

  • threenewbee 2018-11-20 18:35
    关注

    switch是关键字(编辑器已经用蓝色标记出来提醒你了),关键字就不能用于命名函数、变量、类名等。
    比如,你不能写 int int; 或者class new或者 float if()。

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace Q714053
    {
        class Program
        {
            static int[] Str2ReverseArray(string a)
            {
                return a.Reverse().Select(x => x - '0').ToArray();
            }
    
            static void Main(string[] args)
            {
                string s = "1234";
                int[] arr = Str2ReverseArray(s);
                for (int i = 0; i < arr.Length; i++)
                    Console.WriteLine(arr[i]);
            }
        }
    }
    

    图片说明

    另外,已经有大数运算类了。

    先添加下System.Numerics的引用:

    图片说明

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Numerics;
    
    namespace Q714053
    {
        class Program
        {
            static void Main(string[] args)
            {
                string s1 = "12345678901234567890";
                string s2 = "121118888888800001111111111111111111111";
                BigInteger b1 = BigInteger.Parse(s1);
                BigInteger b2 = BigInteger.Parse(s2);
                var r = BigInteger.Add(b1, b2);
                Console.WriteLine(r.ToString());
            }
        }
    }
    

    121118888888800001123456790012345679001
    Press any key to continue . . .

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 无源定位系统的时差估计误差标准差
  • ¥15 请问这个代码哪里有问题啊
  • ¥20 python--version在命令端输入结果Python is not defined怎么办?还有pip不是exe格式是不是没安装成功?
  • ¥15 通过GaussianView进行结构微调消除虚频
  • ¥15 调用transformers库
  • ¥15 由于导出的数据名字中带有/,导致Matlab打不开,怎么办?
  • ¥15 新硬盘安装的程序总是崩溃,提示遇到错误
  • ¥15 openpcdet自制数据集评估bev精度和3d精度相同
  • ¥15 excel 上下按钮 显示行
  • ¥20 云卓h12pro 数传问题