摘要:
简单说呢就针对不同的屏幕分辨率应用不同的CSS样式。比如在电脑、Pad设备上,屏幕比较宽,就可以一行放2个Div。到了手机上,或者Pad竖着拿的的时候,一行就只放1个Div。这里有2个关键点:一是如何在不修改Dom结构的前提下调整布局。二是如何判断屏幕分辨率并应用对应的CSS。以上两点都应该不依赖... 阅读全文
摘要:
1、strcspn头文件:#inclued定义函数:size_t strcspn(const char *s, const char * reject);函数说明:strcspn()从参数s 字符串的开头计算连续的字符, 而这些字符都完全不在参数reject 所指的字符串中. 简单地说, 若str... 阅读全文
摘要:
转自http://hi.baidu.com/qwpsmile/blog/item/9bc44efa4f41018a9f514637.html+----------------+| strtol |+----------------+i.e. string to l... 阅读全文
摘要:
动态存储分配在数组一章中,曾介绍过数组的长度是预先定义好的,在整个程序中固定不变。C语言中不允许动态数组类型。例如:int n;scanf("%d",&n);int a[n];用变量表示长度,想对数组的大小作动态说明,这是错误的。但是在实际的编程中,往往会发生这种情况,即所需的内存空间取决于实际输... 阅读全文
摘要:
#include #include #define NUM 500int main(void){ int a,b,c,i,j; for(a=1;a=c) { printf("亲密数为:(%d,%d)\n",a,b); } }} 阅读全文
摘要:
#include #include int main(void){ double a,x1=1.0,x2; printf("please input a number:\n"); scanf("%lf",&a); x2=x1; x1=0.5*(x1+a/x1); for(;fabs(x1-x2)>... 阅读全文
摘要:
de>#include#include#define MAX_LEN 255int my_strlen1(const char* str);int my_strlen2(char* str);int main(){ char str1[MAX_LEN]; printf("Please ... 阅读全文