728x90
SMALL

// RPGのクリティカルヒットを再現

// 比較演算子 == > < >= <= !=

// スライムとっている。

// 1から10のサイコロをふって、

// 6サイコロの目だけダメジをえたと表示。

// 6以上:クリティカルヒットとして、100のダメジをえたと表示。

using System;

public class Program{

    public static void Main(){

     var random = random.Next(1,11);

     var hit = random.Next(1,11);

     Console.WriteLine(hit);

     if(hit < 6)

     {

         Console.WriteLine("スライムに" + hit + "のダメジをえた!");

        

     }

     else

     {

         Console.WriteLine("スライムに100のダメジをえた!");

     }

    

    }

}

// 슬라임에 데미지를 전달한다. 

///////////////////////////

using System;

public class Program{

    public static void Main(){

        var random = new Random();

        var dice = random.Next(1, 7);

        if(dice>=4)

        {

            Console.WriteLine("サイコロは" + dice);

        Console.WriteLine("スライムの攻をかわした");

        }

        else

        {

            Console.WriteLine("サイコロは" + dice);

            Console.WriteLine("スライムから10のダメジを受けた");

        }

        }

}

// 슬라임의 공격을 회피하는 랜덤 코드

728x90

설정

트랙백

댓글