码迷,mamicode.com
首页 >  
搜索关键字:count    ( 18169个结果
PHP基础------mysql分页
//1.计算总记录数 $sql_0 = "select * from t_user"; $result_0 = mysql_query($sql_0); $count = mysql_num_rows($result...
分类:数据库   时间:2015-09-17 23:09:52    阅读次数:231
HDU-2054 A==B?
#include#includechar n[100000], m[100000];int main(){ int i, j, len_n, len_m, flag, len_last, len_late,doc, q, p, count, start; char ch; whil...
分类:其他好文   时间:2015-09-17 21:37:06    阅读次数:127
Duff设施,一种奇怪的循环
看the c++ programming language时在“表达式和语句”这一章中有这样一个练习void send(int *to, int *from, int count){//Duff设施,有帮助的注释被有意删去了 int n = (count + 7) / 8; switc...
分类:其他好文   时间:2015-09-17 21:17:48    阅读次数:154
json数据解析
json文件:{ "count":"3", "friend": [ { "name": "zhangsan", "pwd": "12345", "nickName": "zs"...
分类:Web程序   时间:2015-09-17 21:06:00    阅读次数:166
css3中的多列布局columns详解
columns语法:columns:[ column-width ] || [ column-count ]设置或检索对象的列数和每列的宽度其中:[ column-width ]:设置或检索对象每列的宽度;[ column-count ]:设置或检索对象的列数。css代码:body{font:14p...
分类:Web程序   时间:2015-09-17 19:30:24    阅读次数:175
asp.net 根据dataset获取大字符串(直接转出json)
方法:public static string GetJsonByDataset(DataSet ds) { if (ds == null || ds.Tables.Count <= 0 || ds.Tables[0].Rows.Count <= 0) { return null; }...
分类:Web程序   时间:2015-09-17 19:11:22    阅读次数:169
Objective-C入门教程(摘录)
1 #import 2 3 @interfaceCattle:NSObject{ 4 5 intlegsCount; 6 7 } 8 9 -(void)saySomething; 10 11 -(void)setLegsCount:(int)count; 12 1...
分类:其他好文   时间:2015-09-17 17:33:53    阅读次数:144
简单查询语句
建表:1 mysql> create table shop(id int(4) not null auto_increment,2 -> name varchar(30),price double(15,2),sort varchar(20),3 -> count int(5) de...
分类:其他好文   时间:2015-09-17 17:31:18    阅读次数:191
我的第一个PHP 自定义函数:验证码生成
/***_nmsg()生成验证码*@access public*@param int $_width 验证码宽度*@param int $_height 验证码高度*@param int $_rnd_count 验证码位数*@param bool $_rnd_count 验证码边框*return v...
分类:Web程序   时间:2015-09-17 17:00:39    阅读次数:165
hdu 4750 Count The Pairs(并查集+二分)
Problem DescriptionWith the 60th anniversary celebration of Nanjing University of Science and Technology coming soon, the university sets n tourist sp...
分类:其他好文   时间:2015-09-17 13:25:39    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!