728x90
SMALL

/////

// ドを理解しよう

using System;

 

class Lesson08

{

    public static void Main()

    {

        Learning();

        Learning("Ruby");

        Learning("C#", "paiza");

    }

 

    static void Learning()

    {

        Console.WriteLine("私はプログラミングを習した");

    }

 

    // 1つのLearningメソッドを定義してください

 

static void Learning(string target)

{

    Console.WriteLine("私は" + target + "習した");

}

    // 2つのLearningメソッドを定義してください

static void Learning(string target1, string target2)

{

    Console.WriteLine("私は" + target1 + "" + target2 + "習した");

   

}

 

 

}

///

 

///

/////

// ドを理解しよう

using System;

 

class Lesson08

{

    public static void Main()

    {

        Run();

        Run("箱根");

        Run("400mトラック", 25);

    }

 

    static void Run()

    {

        Console.WriteLine("私は走った");

    }

 

    // 1つのString型のRunメソッドを定義してください

 static void Run(string target)

 {

     Console.WriteLine("私は" + target + "を走った");

 }

 

    // 1つのString型と1つのint型のRunメソッドを定義してください

     static void Run(string target, int num)

 {

     Console.WriteLine("私は" + target + "" + num + "周走った");

 }

 

}

/////////

728x90

설정

트랙백

댓글