C++有趣程序(13)
自创弹窗程序:(解药:先在任务栏中关闭exe文件,再右键所有运行弹窗关闭) #include<windows.h> using namespace std; int main() { system("color F5"); for(;;) system("start cmd"); ...
自创弹窗程序:(解药:先在任务栏中关闭exe文件,再右键所有运行弹窗关闭) #include<windows.h> using namespace std; int main() { system("color F5"); for(;;) system("start cmd"); ...
传说中的飞鼠程序:(解药:按alt+f4) #include<windows.h> #include<ctime> using namespace std; int main() { int x=GetSystemMetrics(SM_CXSCREEN); int y=GetSystemMetrics(SM_CYSCREEN); srand(tim...
五子棋小游戏: #define _CRT_SECURE_NO_WARNINGS 1 #include <iostream> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <string.h> using namespace std; const int N =...
自创石头剪刀布游戏:(有一点点水。。。) #include <bits/stdc++.h> using namespace std; int main() { cout<<"1代表石头:2代表剪刀:3代表布:4代表结束游戏:"<<endl; cout<<"请出拳&q...
2048小游戏: #include <iostream> #include <windows.h> #include <ctime> using namespace std; int const ROW = 4; int const COL = 4; int game[ROW][COL] = {0}; //上下左右 int const UP =...
更新~ 自创迷宫小游戏: #include<cstdio> #include<windows.h> #include<conio.h> int map[10][10]={{1,1,1,1,3,1,1,1,1,1}, {1,0,0,0,0,0,0,1,1,1}, {1,0,0,1,...
自创枪战小游戏: #include<iostream> #include<cstdio> #include<windows.h> #include<conio.h> using namespace std; int SIZ = 20; HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE); COORD coord; HANDL...
自创(部分参考www.sciencep.com)扫雷游戏: #include<bits/stdc++.h> #include<windows.h> using namespace std; long long int c,dev,m,k,cnt,d,e,jie=10,z,abc,n,b[1000][1000],a[1000][1000]...
自创俄罗斯方块: #include <iostream> #include <windows.h> #include <vector> #include <mmsystem.h> #include<stdio.h> #pragma comment(lib, "winmm.lib") using namespace std; #...
自创贪吃蛇: #include <iostream> #include <windows.h> #include <conio.h> #include <time.h> #include <stdlib.h> using namespace std; const int N = 20; void Get_xy(int x,int y) { ...
素数雨~~~ #include<bits/stdc++.h> using namespace std; int main() { unsigned long long n,m,i; cin>>n; for(m=2;m<=n;m++) { i=2; while (m%i!=0 && i<=...
自创猜数游戏: #include <bits/stdc++.h> int main() { int sysdata;//系统生成的数据 int n; //所猜的数据 int sum = 0;//记录猜的次数 srand((unsigned)time(NULL)); //随机数发生器初始化函数,以时间为种子 sysdata = ...