首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴apull的代码贴C++
#include <iostream>
#include <string>
#include <stdlib.h>

using namespace std;

#define N 200

//反转字符串
string res(string s)
{
int i = 0;
......................
阅读全部 | 2020年9月6日 18:43
#pragma comment(lib,"user32")
#pragma comment(lib,"gdi32")
#pragma comment(lib,"shell32")
#pragma comment(lib,"kernel32")

#include <tchar.h>
#include <windows.h>
 
#define ID_TIMER    1 
#define STRMAXLEN  25 //一个显示列的最大长度 
#define STRMINLEN  8  //一个显示列的最小长度
#pragma comment ( linker, "/subsystem:windows /entry:mainCRTStartup" ) //去除启动或退出程序时黑框
......................
阅读全部 | 2020年8月9日 12:18
1
apull