Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
C++ Array Tutorial 2
SUBMITTED BY:
Guest
DATE:
Dec. 1, 2013, 12:13 p.m.
FORMAT:
C++
SIZE:
843 Bytes
Raw
Download
Tweet
HITS:
1081
Go to comments
Report
B
.
Private
pada
Kelas
Private
digunakan
pada
kelas
untuk
memproteksi
anggota
-
anggota
tertentunya
agar
tidak
dapat
diakses
dari
luar
kelas
secara
langsung
.
Contoh
-2
//Penggunaan private pada class
#include
<conio.h>
#include
<iostream.h>
#define pi 3.14
class
tabung
{
int
j
,
t
;
float
v
,
k
;
public
:
tabung
(
);
void
keluaran
(
);
};
void
main
(
)
{
clrscr
(
);
tabung
s
;
s
.
keluaran
(
);
getch
(
);
}
tabung
::
tabung
(
)
{
cout
<<
"
\n
Menghitung Tabung"
<<
endl
<<
" -----------------"
<<
endl
<<
endl
;
cout
<<
" Masukan Jari-jari = "
;
cin
>>
j
;
cout
<<
" Masukan Tinggi = "
;
cin
>>
t
;
v
=
(
pi
*
j
*
j
)
*
t
;
k
=
(
2
*
(
pi
*
2
*
j
))
+
t
;
}
void
tabung
::
keluaran
(
)
{
cout
<<
endl
<<
" Volume Tabung = "
<<
v
<<
endl
<<
" Keliling Tabung = "
<<
k
<<
endl
;
}
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus