运行 ❯
获取你
自己的 C#
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
using System; namespace MyApplication { class Program { static void MyMethod(string fname, int age) { Console.WriteLine(fname + " is " + age); } static void Main(string[] args) { MyMethod("Liam", 5); MyMethod("Jenny", 8); MyMethod("Anja", 31); } } }
利亚姆 5 岁
珍妮 8 岁
安雅 31 岁