摘要:#include using namespace std; int main(){ int a[3][4]={1,2,3,4,5,6,7,8,9,10,11,12}; /* for(int (&i)[4]:a) for(int (&j):i) ...
阅读全文
11 2014 档案
摘要:#include using namespace std; int main(){ int a[3][4]={1,2,3,4,5,6,7,8,9,10,11,12}; /* for(int (&i)[4]:a) for(int (&j):i) ...
阅读全文
摘要:在shell下直接敲 sqlite3 进入sqlite命令行模式下(CLP的shell模式,CLP是sqlite3的命令行程序)sqlite3 -help (注意有空格)显示命令行模式下,sqlite3中的用法sqlite3 test.db 建立或打开名为test.db的数据...
阅读全文
|