
C++
竹子熊猫
easy come easy go
展开
-
C++ VS2013 unsafe
//#define _CRT_SECURE_NO_WARNINGS #include #include using namespace std; int main() { // 基于当前系统的当前日期/时间 time_t now = time(0); // 把 now 转换为字符串形式 char* dt = ctime(&now); cout /原创 2017-11-11 22:19:02 · 1334 阅读 · 0 评论 -
C++调用python
命令行模式(含参数)1、sys.argv获取①cpp_python.cpp:#include "stdafx.h" #include <iostream> #include <stdio.h> #include <stdlib.h> #include <string.h> using namespace std; int main() { co...原创 2018-03-19 17:12:20 · 309 阅读 · 0 评论