-
701.
+1rekor dediniz de yazmadık mı gibikler
-
702.
+1# include<iostream.h>Tümünü Göster
/* speed recording unit - tachymeter (takometre) */
class sru {
int limit;//speed limit
int* rec; //speed exceeding the limit will be recorded here
int size; //size of dynamic memory (capacity of the tachymeter)
int current;//ind. to the next free array element to save speed
public:
/* constructor */
sru(int plimit = 90, int psize = 100) {
limit = plimit; //set the speed limit,
size = psize; // and the size of the dynamic memory
rec = new int[size];//allocate dynamic memory
current = 0; //initially no speed is recorded
}
/* copy constructor */
sru(const sru& s) {
limit = s.limit;
size = s.size;
rec = new int[size];
for (int i = 0; i < size; i++)
rec[i] = s.rec[i];
current = s.current;
}
/* destructor */
~sru() {
delete [] rec;
}
/* records the current speed,
returns : 1 -> recorded
0 -> couldn't be recorded
(dyn. mem. not available) */
int write(int speed) {
if ( current > size - 1 )
return 0;
rec[current++] = speed;
return 1;
}
//friend class srureader;//srureader class can access the internal part
/* returns the current number of speeds recorded in the array*/
int getcurrent()
{
return current;
}
/* returns the speed from the array with the given index
returns : -1 if the given index is out of range
*/
int getspeed (int index)
{
if ( index < 0 || index > current-1)
return -1;
return rec[index];
}
};
/* this class has functions to read sru records.
it is a friend of sru so that it can access
internal areas */
class srureader {
sru* port;//using this port, connected sru will be read
public:
/* constructor */
srureader() {
port = null;//initially no sru is connected
}
/* connects the given sru
returns : 1 -> connected
0 -> couldn't be connected */
int connect(sru* s) {
//port not available (another sru connected)
if ( port != null )
return 0; //couldn't be connected
port = s;//connect
return 1;//connected
}
/* disconnects the the previously connected sru
returns the disconnected sru */
sru* disconnect() {
sru* disconnectedport = port;
port = null;
return disconnectedport;
}
/* returns the maximum recorded speed */
int maxspeed() {
int max = 0;
// if you declared srureader as friend inside the sru class
/* for ( int i = 0; i < port->current; i++ )
if ( port->rec[i] > max )
max = port->rec[i]; */
// if you access the internal part of sru class with accessor methods
for ( int i = 0; i < port->getcurrent(); i++ )
if ( port->getspeed(i) > max )
max = port->getspeed(i);
return max;
}
};
int main() {
sru takometre(100, 200);
takometre. write(110);
takometre. write(140);
takometre. write(120);
sru copy(takometre);
srureader reader;
reader. connect(©);
cout << "max speed : " << reader. maxspeed() << endl;
reader. disconnect();
system("pause");
return (0);
} -
703.
+1tak tak sıçta kok nihahhah
-
704.
+1ollllleeyy huur çocukllarıııı oooooolllleyyyyy huur çocuklarıııı
-
705.
+1ya acele etmeyin
yavaştan yavaştan
kaplumbağa tavşan hikayesi arkadaşlar -
706.
+1salla salla ne kadar sallarsan salla donuna düşer son damla
-
707.
+1ya da azimle sıçan, duvarı deler
-
708.
+1bir daha aşık olursan malsındır
-
709.
+1inci gibertirr
-
710.
0@733 levi strauss jean markası la
yalan bunlar :P -
711.
+1ya liselitalat ı tanımıosanız yorum yapmayın dıbına goyaydım nick hakkında bi yaz gogıla bakalım ne dicek sana
-
712.
+1bürütüs delikanlı adammış tabi
yedirememiş kendisine
sezar yediriyomuş elleriyle
napolyonda orda çömelmiş kendi kendine
sezar hiçbişeyi farketmemiş mal
napolyon ordan gözünü kırptığı gibiiii -
713.
+1sol baslıga tasıyın lan herkes gorsun rekor denemesıyle ılgılı seyler acın
-
714.
-1simdi kaç yazar die bi sarkı dinledim. fenaydı.
-
715.
+1beynim gibildi lan telegole oy vermekten
-
716.
-1müzik dinliyorum
ve iki gündür uyumadım
hala uykum yok a.k. -
717.
+1bürütüs kapmış sezarın elinden kaşığı
daha naftalin kokulu teyze çarşafları toplamadan
nolu lan demiş sezar
bana mı dikleniyon yawşak -
718.
+1ne güzel şarkıdır bu ya...
herkes herşey senin olsun bir beni yasakla.. -
719.
+131. sayfa çok yaşa
-
720.
+1@756 hala mı uyumadın amk senin *
-
ccc rammstein ccc günaydın diler 20 12 2024
-
uludag sozlukteki malar neyin kafasinda
-
konstant wow girl ün
-
gayranjn bacisi bile var
-
pumberte ve muhtarın
-
sen muyendis degilsin kaira
-
fenerbahçe kulübü acilen kapatılmalı
-
intihar edemiyoz abi ya
-
an itibari ile megane 2nin
-
yaratıcı varsa zalimdir
-
yaşamın var olması bile
-
gururu olan insan zaten
-
bize sadece leblebi kalmış
-
kim amcığımı gibmek ister
- / 1