码迷,mamicode.com
首页 > 其他好文 > 详细

Process Class (System.Diagnostics)

时间:2019-01-13 01:47:26      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:use   using   int   wait   cut   file   name   als   import   

import sys


def hanoi(n, a, b, c):
    if n == 1:
        print(%c --> %c % (a, c))
    else:
        hanoi(n-1, a, c, b)
        print(%c --> %c % (a, c))
        hanoi(n-1, b, a, c)


if __name__ == "__main__":
    n = int(sys.stdin.readline())
    hanoi(n, A, B, C)
using System.Diagnostics;

namespace Hanoi
{
    class Program
    {
        static void Main(string[] args)
        {
            Process process = new Process
            {
                StartInfo = new ProcessStartInfo
                {
                    FileName = "python",
                    Arguments = "hanoi.py",
                    UseShellExecute = false
                }
            };
            process.Start();
            process.WaitForExit();
        }
    }
}

 

Process Class (System.Diagnostics)

标签:use   using   int   wait   cut   file   name   als   import   

原文地址:https://www.cnblogs.com/JebediahKerman/p/Process_Class_System_Diagnostics.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!