top of page

奇数なら

        int i = 19;

        //もしiが奇数なら
        if ( i % 2 == 1 ) {
            Debug.Log( "奇数です");
        }

 

bottom of page