Tekil Mesaj gösterimi
c# ekran koruyucu
Alt
  (#1)
em3 is Offline
Üye
 
em3 - ait Kullanıcı Resmi (Avatar)
 
Mesaj Sayısı: 656
Açtığı Konu: 196

Level: 23 [♥ Bé-Yêu ♥♥ Bé-Yêu ♥♥ Bé-Yêu ♥♥ Bé-Yêu ♥♥ Bé-Yêu ♥]
Paylaşım: 55 / 558
Güç: 218 / 2452
Tecrübe: 35%

Üyelik tarihi: Jul 2007
Kullanıcı No: 105085
Nerden: Sivas
Tecrübe Puanı: 34
REP Puanı : 100
REP Seviyesi : em3 will become famous soon enoughem3 will become famous soon enough
   
Standart c# ekran koruyucu - 12-19-2007


#include<iomanip.h>
#include<dos.h>
#include<stdlib.h>
#include<iostream.h>
int fun(int,int,int );
int x_=81,y_=81,z_=81,l=0;

int main()
{clrscr();
int x,y,z,i,j;
char a[30]={' ','P','R','O','D','U','C','E','D',' ', 'B','Y',' ' ,'e','m','3','};
for(i=0;i<32000;i++)
{
x =rand() % 80;
y =rand() % 50;
z =rand() % 20;
fun(x,y,z);
delay(3);
if(i%5000==0)
{
clrscr();
l++;
textbackground(YELLOW+l+5);
textcolor(YELLOW+l+2);
gotoxy(25,50);
for(j=0;j<26;j++)
{delay(150);
cprintf("%c",a[j]);
}
}


if(i%500==0)
{ gotoxy(25,50);
// textbackground(YELLOW+l+1);
textcolor(YELLOW+l+2);
for(j=0;j<26;j++)
{
cprintf("%c",a[j]);
}}

} return 0;
}


int fun(int a,int b,int c)
{
textbackground(c);


textcolor(c);
gotoxy(a,b);
cprintf("%c",char(219));
return 0;
}


(GK)em3
  
Alıntı ile Cevapla