exam hints 2025/01/31

exam hints 2025/01/31

You are currently viewing a revision titled "exam hints 2025/01/31", saved on 2025年1月31日 9:10 PM by pooja
タイトル
exam hints 2025/01/31
コンテンツ
<html><head><title>四則演算計算してみよう</title></head> <body><center> <form method="post" action="123.cgi"><br><br> 足し算・引き算<br> <a href="test.html">test</a> <input type="text" name="hitotsume"><br> +<br> <input type="text" name="futatsume"><br> -<br> <input type="text" name="itutume"><br> <br> <input type="submit"value="送信する"><br> <input type="reset" value="リセット"> </form> </center> </body></html> 123.cgi #!/usr/bin/perl BEGIN{$|=1;print"Content-type:text/html\n\n";open(STDERR,">&STDOUT");} use CGI; $query=new CGI; $hitotsume=$query->param('hitotsume'); $futatsume=$query->param('futatsume'); $mittsume=$query->param('mittsume'); $total = $hitotsume+$futatsume-$mittsume; print"<center><font size=\"7\">計算結果は、$total</font></center>"; exit;
抜粋
脚注


Old New Date Created Author Actions
2025年1月31日 12:10 PM pooja

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です