数字雨1.1版本
数字雨1.1版本
1.0版本:
正文:
本次新增了查看时间的功能,还将数字进行了规整。老规矩,仅Windows系统有效。如果非Windows的话,可以试试啊哈c编译器。
#include <iostream>
#include <windows.h>
#include <cstdlib>
#include <ctime>
#include <conio.h>
using namespace std;
int main()
{<!-- -->
srand (time(NULL));
system("color 0a");
system("title 矩阵");
while (1)
{<!-- -->
if (kbhit())
{<!-- -->
char ch=getch();
if (ch=='s')
{<!-- -->
system("title 暂停中-按任意键继续");
getch();
system("title 矩阵");
}
if (ch=='t')
{<!-- -->
system("cls");
system ("title 时间");
cout<<"搜索中";
Sleep(200);
cout<<".";
Sleep(200);
cout<<".";
Sleep(200);
cout<<".";
Sleep(200);
cout<<".";
Sleep(200);
cout<<".";
Sleep(200);
cout<<".";
cout<<endl;
Sleep(2000);
cout<<endl;
cout<<"系统时间:";
//获取系统时间
time_t now_time=time(NULL);
//获取本地时间
tm* t_tm = localtime(&now_time);
//转换为年月日星期时分秒结果,如图:
printf("%s\n", asctime(t_tm));
//将时间转换为秒
time_t mk_time = mktime(t_tm);
cout<<"Windows API时间:";
SYSTEMTIME sys;
GetLocalTime( &sys );
printf( "%4d/%02d/%02d %02d:%02d:%02d.%03d 星期%1d\n",sys.wYear,sys.wMonth,sys.wDay,sys.wHour,sys.wMinute, sys.wSecond,sys.wMilliseconds,sys.wDayOfWeek);
cout<<endl;
system("pause");
system("cls");
system("title 矩阵");
}
}
int i=rand ()%20;
if (i>=10)
{<!-- -->
cout<<" ";
}
else
cout<<i;
cout<<" ";
}
}
点个赞再走呗o( ̄▽ ̄)o~</em>
转载于网络 侵权联系作者立即删除QAQ