javascript練習の記録
エデラヘヴァ暦変換
アギフ建国の日を0,0,0,0とします。
注意1: 1日は10時間です。
注意2: 1年は2000日です。
注意3: 1回は5年です。
注意4: 1帰は100回です。
注意総括: つまり、各ケタの上限は、回、年、日の順に、99、4、1999となります。
手入力する場合はご注意ください。
ウィンドウサイズを調べるボタン
まずはボタンをクリック。ウィンドウサイズを変更すると数字も変化します。
php練習の記録
計算してみる1
国語:120、数学:130、英語:140、政経:59、化学:773教科合計:390
3教科平均:130
5教科合計:526
3教科平均:130
5教科合計:526
計算してみる2
$a = 0;
$b = 0;
$c = $a++;
$d = ++$b;
$a=1, $b=1, $c=0, $d=1
$b = 0;
$c = $a++;
$d = ++$b;
$a=1, $b=1, $c=0, $d=1
計算&whileしてみる3
2の0乗から10乗まで
1
2
4
8
16
32
64
128
256
512
1024
1
2
4
8
16
32
64
128
256
512
1024
ifしてみる1
0-99の乱数生成、偶数奇数判定
28、偶数でした
28、偶数でした
比較してみる
bool(false)
bool(true)
bool(false)
bool(true)
bool(false)
bool(true)
bool(false)
bool(true)
int(-1)
int(1)
bool(true)
bool(false)
bool(true)
bool(false)
bool(true)
bool(false)
bool(true)
int(-1)
int(1)
コード
$a = 1;
$b = 2;
$msg1 = ($a>$b);
$msg2 = ($a<$b);
$msg3 = ($a>=$b);
$msg4 = ($a<=$b);
$msg5 = ($a==$b);
$msg6 = ($a!=$b);
$msg7 = ($a===$b);
$msg8 = ($a!==$b);
$msg9 = ($a<=>$b);
$msg10 = ($a??$b);
var_dump($msg1);
var_dump($msg2);
var_dump($msg3);
var_dump($msg4);
var_dump($msg5);
var_dump($msg6);
var_dump($msg7);
var_dump($msg8);
var_dump($msg9);
var_dump($msg10);
比較してみる2
bool(false)
bool(true)
bool(true)
bool(true)
bool(true)
bool(false)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(false)
bool(true)
コード
$a = TRUE;
$b = FALSE;
$msg1 = $a && $b;
$msg2 = $a and $b;
$msg3 = $a || $b;
$msg4 = $a or $b;
$msg5 = $a xor $b;
$msg6 = !$a;
$msg7 = !$b;
var_dump($msg1);
var_dump($msg2);
var_dump($msg3);
var_dump($msg4);
var_dump($msg5);
var_dump($msg6);
var_dump($msg7);
php&mysql練習の記録
接続してみる
If "Connected!" is shown, it means that connecting process was successful.
Connected!
データベースからデータを取り出してみる
id | music-title | jp-music-title | year-of-release | loopable | soundfont |
---|---|---|---|---|---|
75 | Ending | エンディング | 2019 | no | VintageDreamsWaves v2.0 |
76 | Castle | 城 | 2019 | no | VintageDreamsWaves v2.0 |
77 | Village | 村 | 2019 | no | VintageDreamsWaves v2.0 |
78 | Ending | エンディング | 2020 | no | FreeFont |
79 | Folky | フォーキー | 2020 | no | FreeFont |
80 | Insect Girl's Theme | 蟲女のテーマ | 2020 | yes | 027.3mg Symphony Hall |
81 | Rock 'n' Roll | ロックンロール | 2020 | no | FreeFont |
82 | Strange Park's Theme | おかしな公園のテーマ | 2020 | yes | 027.3mg Symphony Hall |
83 | Rainy Day3 | 雨の日3 | 2020 | yes | 027.3mg Symphony Hall |
84 | Rainy Day2 | 雨の日2 | 2020 | yes | 027.3mg Symphony Hall |
85 | Rainy Day1 | 雨の日1 | 2020 | yes | 027.3mg Symphony Hall |