美文网首页
013_练习。

013_练习。

作者: 立秋i | 来源:发表于2018-03-30 23:32 被阅读0次

namespace _013_练习 {

    class Program {

        static void Main(string[] args)

        {

            //int hp;

            //float x, y, z;

            //float speed = 12;

            string str1 = Console.ReadLine();

            int num1 = Convert.ToInt32(str1);

            string str2 = Console.ReadLine();

            int num2 = Convert.ToInt32(str2);

            int temp = num1;

            num1 = num2;

            num2 = temp;

            Console.WriteLine(num1+":"+num2);

            Console.ReadKey();

        }

    }

}

相关文章

网友评论

      本文标题:013_练习。

      本文链接:https://www.haomeiwen.com/subject/ayvmcftx.html