intTestAuto(){return10;}intmain(){int a =10;auto b = a;//auto用于 自动推导类型auto c ='a';auto d =TestAuto();cout<<typeid(b).name()<<endl;//用于打印变量的类型cout <<typeid(c).name()<< endl;cout <<typeid(d).name()<< endl;return0;}
目录 SIGNIN
新猫和老鼠
baby_sql SIGNIN
签到抓包 新猫和老鼠 看到反序列化
来分析一下 <?php
//flag is in flag.php
highlight_file(__FILE__);
error_reporting(0);class mouse
{
public $v;public function __toString(){echo "Good. You caught the mouse:&…
求欧拉函数
前置知识 互质:互质是公约数只有1的两个整数,叫做互质整数。 欧拉函数定义 1 ∼ N − 1 1∼N-1 1∼N−1中与N互质的数的个数被称为欧拉函数,记为 ϕ ( N ) \phi(N) ϕ(N)。 若在算数基本定理中, N p 1 a 1 p 2 a 2 .…