- 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
<!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; |
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
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
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
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
<html> | |
<head> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> | |
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> | |
<style> | |
td{ |
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
<html> | |
<head> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> | |
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> | |
<style> | |
td{ |
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.util.HashMap; | |
import java.util.Map; | |
class Main { | |
static final Map<MagicType, Magic> magics = new HashMap<>(); | |
public static void main(String[] args) { | |
final Caster caster = new Caster("アルトリア", 90); | |
final Fire fire = new Fire(caster); | |
final Thunder thunder = new Thunder(caster); | |
final HellFire hellFire = new HellFire(caster); |
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.util.HashMap; | |
import java.util.Map; | |
import java.util.HashSet; | |
import java.util.Set; | |
class Main { | |
public static void main(String[] args) { | |
final Customer customerA = new Customer("ID-0001"); | |
final Customer customerB = new Customer("ID-0002"); | |
final Customer customerC = new Customer("ID-0003"); |
OlderNewer