- Game
- ドラゴンクエスト
- ヴァルキリープロファイル
- ファイナルファンタジータクティクス
- Color
- コーラルピンク
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.BufferedReader; | |
import java.io.InputStreamReader; | |
import java.util.Random; | |
public class CallingMethod{ | |
public static void main(String[] args){ | |
//電話、メンバー、スタッフのインスタンスを作る | |
Telephone phone = new Telephone(); | |
Member urabe = new Member("卜部"); | |
Staff otsuka = new Staff("大塚"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
obj1 = Object.new | |
def obj1.singleton_method_added(n) | |
p n | |
end | |
def obj1.new_singleton_method | |
end | |
# => :singleton_method_added | |
# => :new_singleton_method |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def sing | |
if Random.rand > 0.5 then | |
print("ズン ") | |
return 1 | |
else | |
print("ドコ") | |
return 0 | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Imports System.Threading | |
Module Module1 | |
Dim zundoko(4) As String '正しい歌詞 | |
Dim sang(4) As String '出力された歌詞 | |
Dim kiyoshi As String 'き・よ・し! | |
Dim zundoko_size As Integer 'ループ用のzundoko.Length | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<title>Profile</title> | |
<style> | |
html,body{ | |
margin: 0px; | |
padding: 0px; |
NewerOlder