#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <windows.h>
int main(int argc, char *argv[])
{ int i;
srand(time(NULL));
int x=10+rand()%20;
printf("%d\n",x);
for(i=1;i<=x;i++)
{
if(i%2==0){
printf("seviyor \n");sleep(200);}
else{
printf("sevmiyor \n");sleep(200);}
}
system("PAUSE");
return 0;
}
sıkıntılı olabilir
Hiç yorum yok:
Yorum Gönder