用手机制作代码雨软件
win7系统代码雨怎么弄?
win7系统代码雨怎么弄?
首先你得有一个数字雨的屏保
然后去屏幕保护设置一下
ip68防水能在大雨天淋雨吗?
国家标准《GB/T 4942.1-2006 旋转电机整体结构的防护等 级(IP代码) 分级》中规定:
防护等级IP68中的6是指完全可以防止灰尘进入;IP68中的8是指可以持续潜入水中工作;,所以IP68的防护等级可以在大暴雨中防水。
如何实现c语言程序各颜色数字雨代码?
#includeltstdio.hgt
#includelttime.hgt
#includeltwindows.hgt
typedef struct
{
int x,y
char ch
}STU
STU st[100]
//出现位置
void gotoxy(int x, int y)
{
HANDLE hout
COORD pos
pos.X x
pos.Y y
hout GetStdHandle(STD_OUTPUT_HANDLE)
SetConsoleCursorPosition(hout, pos)
}
/*隐藏光标*/
void show_cursor(int hide)
{
CONSOLE_CURSOR_INFO cciCursor
HANDLE hout
hout GetStdHandle(STD_OUTPUT_HANDLE)
if(GetConsoleCursorInfo(hout, ampcciCursor))
{
hide
SetConsoleCursorInfo(hout, ampcciCursor)
}
}
/*设置颜色*/
void set_color(int color)
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), color)
}
main()
{
int i,j
show_cursor(0)
srand(time(NULL))
//初始化结构体
for (i0ilt100i )
{
st[i].x rand()
st[i].y rand()
st[i].ch rand()%(49-47) 48
}
while (1)
{
for (i0ilt100i )
{
gotoxy(st[i].x,st[i].y)
set_color(0x2)//最先出现的颜色;
putchar(st[i].ch)
gotoxy(st[i].x,st[i].y-5)
putchar( )
st[i].y
st[i].ch rand()%(49-47) 48
if (st[i].y-5gt18)
{
gotoxy(st[i].x,st[i].y-1)
putchar( )
gotoxy(st[i].x,st[i].y-2)
putchar( )
gotoxy(st[i].x,st[i].y-3)
putchar( )
gotoxy(st[i].x,st[i].y-4)
putchar( )
gotoxy(st[i].x,st[i].y-4)
putchar( )
}
if (st[i].y gt 23)
{
st[i].x rand()
st[i].y rand()
}
gotoxy(st[i].x,st[i].y)
set_color(0xA)//由前一个颜色渐变成的颜色
putchar(st[i].ch)
}
Sleep(120)
}
}
color(0) printf(