3 ile 12 arasında rastgele 10 sayı seçiyor ve ekrana bunların kendilerini ve karelerini yazdıyor. Tabii kendilerini ve karelerini ayrı ayrı array lerin içinde muhafaza ediyor. kendileri array[] de.. Kareleri ise y[] de barınıyor. Arrayleri anlamak için güzel bir örnek


 


#include <stdio.h>
#include <stdlib.h>
#include <math.h>
void farray(int [],int []);
main()
{
int array[10];
int y[10]={0};


randomize();
for(int i=0;i<10;i++)
{
  array[i]=3+rand()%12;
}
farray(array,y);
}
void farray(int array[],int y[])
{
printf(“x y
———–
“);
for(int z=0;z<10;z++)
{
 if(array[z]%2==0)
 y[z]=pow(array[z],2);
 else
 y[z]=pow(array[z],3);
 printf(“%d %d
“,array[z],y[z]);
}
}


Kaynak: Doğu Akdeniz Univ. CSIT Labworks
belgesi-417
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