码迷,mamicode.com
首页 >  
搜索关键字:if while    ( 28479个结果
ACdream ????计算最长连续相同字符的个数
计算最长连续相同字符的个数 测试数据 输入: aaaassdfg adasafag ssddffffgt 输出: 4 1 4   #include #include int main() { int i,n,t; int b[105]; char a[105]; scanf("%d",&t); while(t--) { ...
分类:其他好文   时间:2014-06-11 06:40:08    阅读次数:207
uva Children's Game
非常巧妙的题目,巧用cmp,注意cmp的重载 #include #include using namespace std; string a[55]; bool cmp(string a, string b){ return a+b > b+a; } int main(int argc, char const *argv[]) { int n; while(cin >...
分类:其他好文   时间:2014-06-11 06:10:28    阅读次数:293
一入python深似海--while-loop与for-loop
while loops 定义与实例 i = 0 numbers = [] while i < 6: print "At the top i is %d" % i numbers.append(i) i = i + 1 print "Numbers now: ", numbers print "At the bottom i is %d" % ...
分类:编程语言   时间:2014-06-11 00:59:17    阅读次数:410
Android多线程研究(9)——线程锁Lock
在前面我们在解决线程同步问题的时候使用了synchronized关键字,今天我们来看看Java 5.0以后提供的线程锁Lock.Lock接口的实现类提供了比使用synchronized关键字更加灵活和广泛的锁定对象操作,而且是以面向对象的方式进行对象加锁。 @Override public void run() { while(true){ Lock lock = new Re...
分类:移动开发   时间:2014-06-11 00:57:51    阅读次数:329
JavaScript基础
JavaScript 是一种解释性的基于对象的脚本语言。 JavaScript 语言使用的语法与 C 语言使用的语法类似,并支持结构化构造,例如if...else、for和do...while。大括号 ({}) 用于分隔语句块。该语言支持各种数据类型,包括String、Number、Boole...
分类:编程语言   时间:2014-06-10 08:50:04    阅读次数:284
hdu1000
1 #include 2 // 主函数main 3 int main() 4 { 5 int a,b; 6 // 在while循环中以EOF作为文件结束标志 7 // ASCII代码值的范围是0~255,不可能出现-1,因此可以用EOF作为文件结束标志 8 whil...
分类:其他好文   时间:2014-06-10 00:42:55    阅读次数:284
C语言随笔记(一)
自己把一些学习中和使用中的一些点滴有用的记录下来和大家分享。1.获取指定长度的字符串,或者说为字符串数组获取用户输入的字符void get_str(char str[], int len){ int i=0, c; while (i=250){ while(getchar()!=’\n’) ; .....
分类:编程语言   时间:2014-06-09 21:49:51    阅读次数:325
求单链表的中间节点,用快慢指针
Node* findMid(Node* &head){ if(head == NULL||head->next == NULL) return head; Node* p = head; Node* q = head; while(q->next->ne...
分类:其他好文   时间:2014-06-09 17:55:34    阅读次数:204
poj2109
#include #include double n,p;int t; int main(){ while(~scanf("%lf%lf",&n,&p)) { t=int (pow(p,1/n) + 0.5); printf("%d\n",t); } return ...
分类:其他好文   时间:2014-06-09 13:54:21    阅读次数:209
libpcre.so.1 cannot be found
安装完Nginx之后,启动报错。[vagrant@localhost sbin]$ sudo ./nginx./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No ...
分类:其他好文   时间:2014-06-08 19:01:47    阅读次数:294
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!