参考:http://gnuplot.10905.n7.nabble.com/Problems-with-plot-data-in-Windows-7-td1956.html 以下几种都是可以的: "C:\\Placas\\malla.dat" ‘C:\Placas\malla.dat‘ "C:/Placas/malla.dat" ‘C:/Placas/malla.d...
if(!preg_match("/^13[0-9]{1}[0-9]{8}$|15[0-9]{1}[0-9]{8}$|18[0-9]{1}[0-9]{8}$|145[0-9]{8}$$/",$phone)){
echo "alert('手机号不正确!')";
echo "location='register.php'";
exit;
}...
分类:
移动开发 时间:
2014-08-26 11:46:15
阅读次数:
188
解决百度云推送通知,不显示默认Notification
分类:
其他好文 时间:
2014-08-26 11:06:15
阅读次数:
245
字体(font-family):新细明体:PMingLiU细明体:MingLiU标楷体:DFKai-SB黑体:SimHei宋体:SimSun新宋体:NSimSun仿宋:FangSong楷体:KaiTi仿宋_GB2312:FangSong_GB2312楷体_GB2312:KaiTi_GB2312微软正...
分类:
Web程序 时间:
2014-08-26 09:47:06
阅读次数:
270
1) #cd /usr/share/zoneinfo you will see many countries and timezone, you can go to the directory you see your timezone eg:# cd /usr/share/zoneinfo/Ame...
分类:
其他好文 时间:
2014-08-26 00:21:25
阅读次数:
259
1. ($15'$) 设 $A$ 是数域 $\bbP$ 上的 $r\times r$ 阶矩阵, $D$ 是 $s\times s$ 阶矩阵, $\dps{M=\sex{\ba{cc} A&B\\ C&D \ea}}$, 并且 $\rank(M)=\rank(A)=r$. 证明: $D=CA^{-1}...
分类:
其他好文 时间:
2014-08-25 22:27:14
阅读次数:
309
/*有数组{2,5,6,11,15,17,22,34,45},用户输入的任意整数 是否在数组中,如果不在打印没有该数字,如果在删掉该数字,并把后面的数字依 次往前挪动,最后用数字0补位。例如:用户输入22,那么数组中的数据变化为 {2,5,6,11,15,17,34,45,0}*/
void main() { int a[9]={2,5,6,11,15,17,22,34,35},i,j,temp,x,n=1; printf("请输入一个整数:"); scanf("%d",&x); for(i=0;i<9;i++) { if(x==a[i]) { for(j...
分类:
其他好文 时间:
2014-08-25 21:06:54
阅读次数:
236
有数组{2,5,6,11,15,17,22,34,45},将用户输入的任意整数放入数组正确的位 置中,保证顺序不能乱掉。例如:用户输入9,那么数组为{2,5,6,9,11,15,17,22 ,34,45}
#include void main(){ int a[9]={2,5,6,11,15,17,22,34,35},b[10]={0,2,5,6,11,15,17,22,34,35},x,i,j,temp; printf("请输入一个整数:"); scanf("%d",&x); b[0...
分类:
其他好文 时间:
2014-08-25 21:04:54
阅读次数:
228
#include int strlen(char array[])//定义函数strlen; { int i = 0; while(array[i] != '\0') { i++; } return i;}void main(){ char input[100...
分类:
其他好文 时间:
2014-08-25 21:02:34
阅读次数:
149
#includeint accept(int array[] ) { printf("请输入一个不超过五位数的数组:"); scanf("%s",array); } int sort(int array[]) { int i,tmp,j; for(i = 0; i ...
分类:
其他好文 时间:
2014-08-25 21:01:25
阅读次数:
192