欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

占位符使用(竖式计算)

程序员文章站 2022-08-28 12:56:46
using System; namespace program { class program1 { static void Main(string[] args) { int a = 100; int b = 100; Console.WriteLine("下面使用竖式计算结果"); Consol ......
using system;
namespace program
{
    class program1
    {
        static void main(string[] args)
        {
            int a = 100;
            int b = 100;
            console.writeline("下面使用竖式计算结果");
            console.writeline("{0,6}\n+{1,5}\n-------\n={2,5}", a, b, a + b);
        }
    }
}

占位符使用(竖式计算)

 

 占位符使用(竖式计算)