入力数字をint型に変換


2つの数字を入力して、彼らの和を出力します.
 

  
  
  
  
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;  
  4.  
  5. namespace ConsoleApplication1  
  6. {  
  7.     class Program  
  8.     {  
  9.         static void Main(string[] args)  
  10.         {  
  11.             string src1 = Console.ReadLine();//src1  
  12.             int sum = 0;  
  13.             char[] sep = new char[]{' '};// “ ” ,  
  14.             string[] strs = src1.Split(sep);//string split  
  15.             foreachstring str in strs) {  
  16.                 sum += Convert.ToInt32(str);// int  
  17.             }  
  18.             Console.WriteLine("sum is: {0}",sum);  
  19.         }  
  20.     }  
  21. }  

 
入力:1 2
出力:sum is:3