首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴apull的代码贴全部
#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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2019-01-20 22:23
# @Author : Apull
# @File : 佩奇.py

from turtle import *

def nose(x, y):  # 鼻子
    penup()  # 提起笔
    goto(x, y)  # 定位
    pendown()  # 落笔,开始画
......................
阅读全部 | 2020年8月9日 12:19
#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