Description Nchildren are sitting in a circle to play a game. The children are numbered from 1 toNin clockwise order. Each of them has a card with a.....
分类:
其他好文 时间:
2014-12-28 15:33:01
阅读次数:
291
第一章字符串,数字,类和对象为了证明Ruby真的好用,hello world也能写的如此简洁:puts 'hello world'1.输入/输出print('Enter your name')name=gets()puts("Hello #{name}") 注:Ruby是区分大小写的2.Str...
分类:
其他好文 时间:
2014-12-28 00:23:52
阅读次数:
139
题目1 : Lost in the City
时间限制:10000ms
单点时限:1000ms
内存限制:256MB
描述
Little Hi gets lost in the city. He does not know where he is. He does not know which direction is north.
Fortun...
分类:
其他好文 时间:
2014-12-27 23:09:22
阅读次数:
235
在C语言里面一直很容易混淆的,gets和fgetS的区别:char * fgets ( char * str, int num, FILE * stream );Reads characters fromstreamand stores them as a C string intostruntil...
分类:
编程语言 时间:
2014-12-26 09:34:49
阅读次数:
221
1、gets() 和puts() (1)gets():从系统的标准输入设备获取一个字符串,读取换行符之前(不包括换行符)的所有字符 用法:char *gets( ); gets()函数接受一个字符串地址为参数,读取成功则返回读入字符串的地址,读取失败则返回空指针NULL;(2)puts():输...
分类:
编程语言 时间:
2014-12-24 11:22:23
阅读次数:
121
#include #include int main (){char str[100];int i,j;gets(str);j=strlen(str);for(i=j-1;i>=0;i--){printf("%c",str[i]);} return 0;}
分类:
其他好文 时间:
2014-12-22 00:56:46
阅读次数:
169
需要了解的内容1. listview中的getItemAtPosition与Adapter的getItem的position的区别 listView中的getItemAtPosition的源码实现: 1 /** 2 * Gets the data associated with the spec.....
分类:
移动开发 时间:
2014-12-21 23:33:26
阅读次数:
317
#include #include int main(){ char a[101], ch; int i, j, n, len; gets(a); scanf("%d", &n); len = strlen(a); for(i = 1; i <= n; ++i) { ch = a[...
分类:
其他好文 时间:
2014-12-19 00:33:28
阅读次数:
169
#include#includeintmain(){ chars1[81]="",s2[81]=""; gets(s1); gets(s2); inti,j,k,c=1; while(c) for(c=0,i=0;s1[i]!=0;i++) { if(s1[i]==s2[0]) {...
分类:
其他好文 时间:
2014-12-19 00:25:30
阅读次数:
192
2014-11-15 BaoXinjian一、摘要二、解决方式select sid, sql_id from v$session where sid = 1001select b.begin_interval_time, a.disk_reads_total, a.buffer_gets_total...
分类:
数据库 时间:
2014-12-18 21:52:46
阅读次数:
206