整数和字符串操作

整数和字符串操作

本文介绍了整数和字符串操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,
我正在开发一个c#应用程序,其中涉及加法,例如

1 + 2 + 3 + 4 =答案
当其中一个数字丢失时,应用程序无法汇总,而是引发异常.

如果缺少一些数字,我该如何继续添加,而我只添加可用的数字

万一所有数字都丢失了,我希望答案计算为一个像X这样的字符串char.
在此先感谢

Hi there
I am developing a c# application which involves adding up numbers eg

1+2+3+4=Answer
When one of the numbers is missing, application fails to sum up but instead it throws an exception.

How can i continue adding in case some numbers are missing, and i just add the available numbers

In case if all the numbers are missing, i want the answer to evaluate to a string char like X.
Thanks in advance

推荐答案


string tmp = "1+2+3+5";
int total = tmp.Split('+').ToList().Sum(item => Convert.ToInt32(item));
Console.WriteLine(tmp + " = " + total.ToString());



这篇关于整数和字符串操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 01:18