- 博客(7)
- 资源 (9)
- 收藏
- 关注
原创 C++带你实现倒计时
倒计时在生活中很常见今天我们就用C++把他实现。#include <iostream>using namespace std; class Time{ int hour; int min; int sec;public: Time(int a,int b,int c) { hour=a; min=b; sec=c; } void show() { cout <
2021-09-16 21:48:57
4794
原创 python贪吃蛇代码
语言:python外置组建:pygamepython是一款十分简单的语言,功能也十分巨大它也能实现贪吃蛇。游戏过程:废话不多说我们来看代码 :#0.imort xxxximport pygame# pygame游戏库,sys操控python运行的环境import pygame, sys, random# 这个模块包含所有pygame所使用的常亮from pygame.locals import *# 1,定义颜色变量# 0-255 0黑色 255白色red
2021-07-25 22:58:53
1124
原创 C#制作电脑病毒
使用语言:C#外置组件:无先看代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;namespace wacopyandpaste{ public partial c
2021-07-25 15:26:02
950
2
原创 java贪吃蛇游戏代码
1.贪吃蛇是一款十分有趣又简单的游戏我们就用java制作一个属于自己的贪吃蛇吧。编程语言:java外置组件:无我先亮一下代码:import java.awt.*;import java.awt.event.*;import java.io.File;import java.io.IOException;import java.util.Random;import javax.sound.sampled.*;import javax.swing.*; class Tile..
2021-07-24 22:15:27
1045
C++当前目录所有*.*文件加密程序
2022-02-01
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人