php学习笔记
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>php学习笔记</title>
<style>
<!--修改css-->
body {background-color:black; color:white;}
h1{font: 72pt arial bold;}
</style>
</head>
<body>
<?php
//注释
#注释
/*
* 注释
*/
$a = 5;
$b = 010; //八进制
$c = 0xf;
echo '$b=' . "$b<br>";
print '$c=' . "$c<br>";
echo '$a<br>'; //单引号对引号里不识别
print '$a<br>';
//转义字符\n换行并归零 \br换行 \t \' \" \$ \r回车(这里的换行符是显示在源代码里面的换行符,在网页里并不会显示)
//null 1)被赋值null 2)尚未被赋值 3)被unset
$var = 1.1;
echo "$var is a " . gettype($var) . "<br>"; //.用于连接字符串,输出1.1 is a double
var_dump($var); //输出变量类型,这里是:float
//转换变量类型->自动由小到大
//强制转换 cast或settype();
echo "<br><br>";
//$_SERVER组的内变量
echo "目前执行的文件名称" . $_SERVER['PHP_SELF'] . "<br>";
echo "服务器名" . $_SERVER['SERVER_NAME'] . "<br>";
echo "服务器软件" . $_SERVER['SERVER_SOFTWARE'] . "<br>";
echo "文档的根目录" . $_SERVER['DOCUMENT_ROOT'] . "<br>";
echo "用户相关信息" . $_SERVER['HTTP_USER_AGENT'] . "<br>";
echo "远程用户的地址" . $_SERVER['REMOTE_ADDR'] . "<br>";
echo "远程用户的连接端口" . $_SERVER['REMOTE_PORT'] . "<br>";
include "GetIP.php";
GetIP();
//常量
echo "你的系统是:" . PHP_OS . "<br>";
echo "目前使用的PHP版本是:" . PHP_VERSION . "<P>";
//自定义常量
define("PI", 3.14159);
echo PI . "<br>";
//运算符同c,注意.是连接字符串运算符
//位运算符同;逻辑运算符:^按位异或 xor异或 and/&&与 or/||或 !非
/* 其他运算符
* &取地址
* @不显示错误信息
* ?=三目
* ,逗号运算符
* ->应用对象的方法和属性
* =>数组赋值
*/
//流程控制,if() eles;
//while(){}
//
// switch{ case 1: ; break; default;} 同样
//注意for(,,){}用,分隔
//输出99乘法表
print("<table border=1>"); //表格开始
for ($row = 1; $row <= 9; $row++) {
print("<tr>\n");
for ($column = 1; $column <= $row; $column++) {
print("<td>");
print($row * $column);
print("</td>");
}
print("</tr>");
}
print("</table>");
//global $int;全局变量
//static $num=0; $num++;静态变量,第一次定义有效
//
//函数变量
function testvar() {
echo "testvar()函数<br>";
}
function setname($string) {
echo "my name is $string";
}
$rtext = 'testvar';
$rtext();
$rtext = 'setname';
$rtext("Jun");
?>
</body>
</html>
html学习
段落标记
换行
这是一个超链接
各种等级的标题,不过这个标题的字号已经改为72
标题居中对齐
隶书 3号字 黄色
插入了四个空格
哈哈哈,这里没有插入四个空格
training diary 2011-01-22
This is the second day of this winter holiday.
I know I must do a lot in this winter holiday ,so I go back to school ,in the training room, I would have a better efficency!
details:
1)
00:00 regist the codeforce #52 , but it is a long time since last coding, so I am in very bad condition.Firstly,i didn't read the problem correctly, wa 3 times, I got the ac 30 minutes after the match started.I passed the pretest of problem B at 50mins, but it failed the final test after the contest.It was because when debuging,I found a small mistake and corrected it,but this sentence appeared two times,I didn't correct the other one,so....
Then ,I spent the last 1 hour in problem E,but there is something wrong with my IDE(both netbeans and Eev),I can't debug the long codes,then the contest ended...
1.尽快恢复状态 2.提升代码习惯 3.重整系统
2)I went back to school in the afternoon,then I found some problems on poj ,1579 is a simple problem,you could finish by both recursion and dp,but 注意题目的优先计算顺序。先是考虑是否会小于0,然后才考虑是否会大于20,要不然就会WA。(害得我wa了一下午,555)
我来到博客园了!
首先批评一下博客园没有自动保存草稿的功能,刚才插入代码导致页面崩溃,写好多文章没有了,不过以后技术文章一定不会直接用网页写的。
来到博客园的原因很简单:
1.原来的空间在百度,可惜百度对于写代码的支持太差,不仅没有插入代码功能,连tab都不支持;
2.百度空间现在在向sns方向发展,最近搞出了搭讪等等应用,主页变得太难看,实在受不了啊!
以后认真学习编程,多写文章!
void main(){ puts("I love programming!"); }
一种ws的计算几何方法
http://poj.org/problem?id=3737
题意:给出圆锥的表面积(包含底面的圆),求圆锥的最大体积,并输出高与半径
常规思路:
推公式:
S=pi*r*l + pi*r*r
l=sqrt(r*r+h*h),
联立得, r*2= s*s/(pi*pi*h*h+2*pi*s)
V=(1/3)*pi*r*r*h,
代入r*2,求导,令一阶导数为0,
得出结果h=sqrt(2*s/pi)
r=sqrt(s*s/(pi*pi*h*h+2*pi*s))
把h代到r里面,可以得到r=sqrt(s/pi/4)
v=(1.0/3.0)*(s*s)*h/(pi*h*h+2*s)
其他思路:
直接二分f'(x)=0
left=0.0right=sqrt(s/2pi)...
ws思路:
先用excel暴力(三分搜索)出样例的一个比较精确的解:
v=10.9254843059207
h=4.37019320246246
s=1.5450969
设输入的数是样例的d*d倍(也就是把样例等比例放大d倍)
v'=v*d*d*d
h'=h*d
s'=s*d
比赛的时候忘记求导公式原来可以用这种ws的方法^_^
ps:可能因为这题数据范围小(1≤S≤10000)而且输出精读要求低(0.01)吧
注意:
1.pi用 #define PI acos(double(-1)) 比较稳妥,有人pi到了15位ac
2.printf 把%.2f改成%.2lf可能就过了
3.我用%.2lf g++ wa 然而 c++ ac
用%.2f g++ c++都ac了