码迷,mamicode.com
首页 >  
搜索关键字:while loading shared    ( 36422个结果
common头文件
#ifndef COMMON_HHH#define COMMON_HHH#define ASSERT(p) \ do{\ if (!p){\ printf("%s:%d\n",__FILE__,__LINE__ );\ }\ } while (...
分类:其他好文   时间:2014-06-28 18:34:04    阅读次数:293
sdut2613(This is an A+B Problem)大数加法
#include #include #include #include using namespace std;char a[1010],b[1010];int ta[1010],tb[1010];int main(){ int l2,l1,l; while(scanf("%s%s",a...
分类:其他好文   时间:2014-06-28 17:39:49    阅读次数:189
ADODB的应用
Connect("localhost", "root", "", "php100")or die("错误");$db->Execute("set names 'UTF8'");$query=$db->execute("select * from `php100`");while($row=$quer...
分类:数据库   时间:2014-06-28 13:59:08    阅读次数:294
PatentTips - Handling shared interrupts in bios under a virtualization technology environment
BACKGROUNDThis relates to the operation of software under a virtualization technology (VT) environment.In a VT environment, such as the Intel VT or AM...
分类:移动开发   时间:2014-06-28 13:57:42    阅读次数:248
SQL基础语法等
--1、while循环declare @sum intdeclare @i intset @i=1set @sum=0while(@i90) print @iendprint @sum--2、goto语句declare @num intset @num=100flag:print @numsel.....
分类:数据库   时间:2014-06-28 13:30:20    阅读次数:267
CentOS-6.3 编译erlang-otp 17.0 报relocation R_X86_64_32 against `OPENSSL_ia32cap_P' can not be used when making a shared object; recompile with -fPIC错误
编译erlang otp 17.0 一直提示:/usr/bin/ld: /usr/local/ssl/lib/libcrypto.a(cryptlib.o): relocation R_X86_64_32 against `OPENSSL_ia32cap_P' can not be used whe...
分类:其他好文   时间:2014-06-28 13:16:07    阅读次数:497
sql server 汉字转拼音首字母
create function fun_getPY ( @str nvarchar(4000) )returns nvarchar(4000)asbegin declare @word nchar(1),@PY nvarchar(4000) set @PY='' while len(@...
分类:数据库   时间:2014-06-28 12:58:14    阅读次数:225
剑指OFFER之第一个只出现一次的字符(九度OJ1283)
题目描述:在一个字符串(1#include int main(){ int i; char c[10000]; int cnt[24]; while(scanf("%s",&c)!=EOF){ memset(&cnt,0,sizeof(int)*24); ...
分类:其他好文   时间:2014-06-28 12:31:02    阅读次数:231
sleep
function sleep(numberMillis) { var now = new Date(); var exitTime = now.getTime() + numberMillis; while (true) { now = new Date(); if (now.getTime() >...
分类:其他好文   时间:2014-06-24 10:44:55    阅读次数:267
C语言下的简易计算器
1 #include 2 #include 3 int main() 4 { 5 double data1, data2; 6 char op; 7 while (3 == scanf("%lf%c%lf", &data1, &op, &data2) ) 8 ...
分类:编程语言   时间:2014-06-24 09:05:51    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!