欢迎使用CSDN-markdown编辑器

来源:互联网 发布:java数据库连接池druid 编辑:程序博客网 时间:2024/06/06 17:37
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Plus{    class Program    {        static void Main(string[] args)        {            Console.WriteLine("Please Enter A and B:");            int a, b;            Console.Write("A = ");            a = Convert.ToInt32(Console.ReadLine());            Console.Write("B = ");            b = int.Parse(Console.ReadLine());            int c = a + b;            Console.WriteLine("{0} + {1} = {2}", a, b, c);            Console.ReadKey();        }    }}

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Plus{    class Program    {        static void Main(string[] args)        {            Console.WriteLine("Please Enter A and B:");            int a, b;            Console.Write("A = ");            a = Convert.ToInt32(Console.ReadLine());            Console.Write("B = ");            b = int.Parse(Console.ReadLine());            int c = a + b;            Console.WriteLine("{0} + {1} = {2}", a, b, c);            Console.ReadKey();        }    }}
0 1