码迷,mamicode.com
首页 >  
搜索关键字:argv    ( 3650个结果
ios学习Day3xiawu
switch#include int main(int argc, char * argv[]){ int i; scanf("%d",&i); switch(i) { case 1: {printf("春"); break;...
分类:移动开发   时间:2014-07-16 21:46:08    阅读次数:236
c++ boost库学习一:时间和日期
timer类#include #include "iostream"using namespace std;int _tmain(int argc, _TCHAR* argv[]){ boost::timer t; coutusing namespace std;int _tmain(i...
分类:编程语言   时间:2014-07-16 20:25:04    阅读次数:224
UVa10954
Add All题意:最优二叉树(priority_queue实现)#include #include #include using namespace std;int main(int argc, char *argv[]){ int n, i, j, a, sum[6000]; pri...
分类:其他好文   时间:2014-07-13 20:03:13    阅读次数:218
UVa673
Parentheses Balance题意:括号匹配#include #include int main(int argc, char *argv[]){ char ch, stack[200]; int i = 0, flag = 0, n, j; scanf("%d%*c", ...
分类:其他好文   时间:2014-07-13 20:01:12    阅读次数:195
PHP中$_SERVER的详细参数与说明
PHP编程中经常需要用到一些服务器的一些资料,特把$_SERVER的详细参数整理下,方便以后使用。 $_SERVER['PHP_SELF'] #当前正在执行脚本的文件名,与 document root相关。 $_SERVER['argv'] #传递给该脚本的参数。 $_SERVER['argc'] #包含传递给程序的命令行参数的个数(如果运行在命令行模式)。 $_SERVER['GATEW...
分类:Web程序   时间:2014-07-13 18:54:34    阅读次数:323
VS2010中使用命令行参数
在Linux下编程习惯了使用命令行参数,故使用VS2010时也尝试了一下。 新建项目,c++编写程序如下: #include #include using namespace std; int main(int argc,char*argv[]) { ifstream fin(argv[1],ios::in);//输入方式打开文件 //ifstream fin;fin.open(argv...
分类:其他好文   时间:2014-07-12 21:01:31    阅读次数:296
Qt for android触摸手势事件QGestureEvent
在触摸设备上可以使用Qt的手势事件 要激活手势事件,需要执行以下操作: 第一步,设置QT程序版本 QApplication app(argc, argv); QCoreApplication::setApplicationVersion(QT_VERSION_STR);     第二步,为QWidget控件注册手势事件 QListQt::GestureType> ge...
分类:移动开发   时间:2014-07-12 20:30:44    阅读次数:807
localtime和gmtime
// temp10.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include int _tmain(int argc, _TCHAR* argv[]){ //宇宙标准时间是格林威治时间。 //为了适应地球上的个...
分类:其他好文   时间:2014-07-11 21:53:38    阅读次数:304
简化ui文件转换写法
在命令行敲一串长的命令,枯燥麻烦。 #coding:utf-8 import sys import os import subprocess if len(sys.argv) == 2: #节省输入,不输入后缀 #直接使用参数的第2个值 file = sys.argv[1] + '.ui' #检查输入文件是否存在 if not os.path.e...
分类:其他好文   时间:2014-07-10 20:17:25    阅读次数:157
Python脚本传参和Python中调用mysqldump
#coding=utf-8 import MySQLdb import sys import os # 李红颖编写,用户湖南CLV数据分割使用 print 'dump database:',sys.argv[1] ##传入的第一个参数,数据库名称 print 'dump table:',sys.argv[2] ##传入的第二个参数,表名称 dbname=sys.argv[1] tablen...
分类:数据库   时间:2014-07-09 09:35:51    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!