Bilgisayar 1 ile 10 arasında 5 tane sayı alıyor random olarak.


Ve ekrana tuttuğu sayılar kadar asteriks *** bastıyor.


#include <stdio.h>
#include <stdlib.h>
void myarray(int []);
main()
{
int array[5];
randomize();
for(int x=0;x<5;x++)
{
array[x]=1+rand()%30;
}
myarray(array);
}
void myarray(int array[])
{
for(int y=0;y<5;y++)
{
 for(int z=1;z<array[y];z++)
 {
 printf(“*”);
 }
printf(”
“);
}
}


Kaynak: Doğu Akdeniz Univ. CSIT Labworks
belgesi-418
Belgeci

Share
Published by
Belgeci

Recent Posts

Fecr-i ati Edebiyatı

FECRİ ATİ EDEBİYATI   Servet-i fünun edebiyatının devamı niteliğinde olan fecr-i ati topluluğu,1909 yılında ortaya…

5 saat ago

İlk Cep Telefonu

ÖZELLİKLER: Boyut: 28x8x6 cm Ağırlık: 850gr Ekran: Yok Devre sayısı: 30 Konuşma süresi: 35 dakika…

17 saat ago

Basic Grammar-Questions

There are two kinds of questions: yes or no questions and wh- questions. You ask…

1 gün ago

Basic Grammar-Positive And Negative Sentences

A positive sentence tells you that something is so. A sentence that tells you something…

2 gün ago

Basic Grammar-The Imperative

Use the base form of a verb to give commands or make direct requests. This…

2 gün ago

Basic Grammar-Sentences

A sentence is a group of words that expresses a complete thought. A sentence must…

3 gün ago