Minggu, 03 Juli 2011

(C++) determining leap years

program for determining a leap year or not. we input a value of which will be processed for the specified year leap year or not, where the leap year is the year that can be divisible by 4 until the end of the value 0. good luck,….
algoritma:
year=y
if (y mod 4)= 0
write “y adalah tahun kabisat”
else
write “y bukan tahun kabisat”
end;
SOURCE CODE
#include <iostream.h>
#include <string.h>
#include <conio.h> 
class Kabisat
{
private:
int l;
char tahun[4];
public:
Kabisat();
void hitungKabisat();
friend istream &operator >> (istream &in, Kabisat &);
friend ostream &operator << (ostream &out, Kabisat &);
};
Kabisat::Kabisat(){
cout << “MENENTUKAN TAHUN KABISAT” << endl;}
void Kabisat::hitungKabisat()
{
if ( l % 4 != 0)
strcpy(tahun,”Bukan Tahun kabisat”);
else
strcpy(tahun,”adalah tahun kabisat”);
}
istream &operator >> (istream &in, Kabisat &masukan)
{
cout<<”Memasukan tahun : ” ;
in>>masukan.l;
return in;
}
ostream &operator << (ostream &out, Kabisat &tampil)
{
tampil.hitungKabisat();
out << tampil.l << “  “<< tampil.tahun << endl;
return out;
}
int main()
{
Kabisat x;
cin >> x;
cout << x;
system (“pause”);
return EXIT_SUCCESS;
}

1 komentar:

  1. Lucky Club Casino Site Review 2021 + Bonus
    Find all of the information about Lucky Club Casino from the ⭐ top rated casino websites! Rating: 8/10 · ‎Review by luckyclub LuckyClub.live · ‎Price range: ₹5,000

    BalasHapus