C++有趣程序(3)
自创贪吃蛇: #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 <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 = ...