C#中string.Substring 的用法

String.SubString(int  startIndex,int length)   
  startIndex:截取字符串开始的位置     
  length:截取字符串的长度

例子:用户 输入两个数,通过逗号分隔,输入M两个数进行乘运算,输入D两个数进行除法运算。

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
 

static double Multiply(double param1, double param2)
{
return param1 * param2;
}
static double Divide(double param1, double param2)
{
return param1 / param2;
}

static void Main(string[] args)
{

Console.WriteLine("enter 2 numbers separated with a comma:");
string input = Console.ReadLine();
int commapos = input.IndexOf(',');
double param1 = Convert.ToDouble(input.Substring(0, commapos));
double param2 = Convert.ToDouble(input.Substring(commapos + 1, input.Length - commapos - 1));
Console.WriteLine("enter M to multiply or D to divide:");
input = Console.ReadLine();
double process;
if (input == "M")
{
process = Multiply(param1,param2);
}
else
{
process = Divide(param1,param2);
}
Console.WriteLine("result:{0}", process);
Console.ReadKey();
}
}
}

转载于:https://www.cnblogs.com/benpao1314/p/6023733.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值