#include<iostream.h>
main()
{
unsigned long int ocak,subat,mart,nisan,mayis,haziran,temmuz,agustos,eylul,ekim,kasim,aralik;
unsigned long int ock,sbt,mrt,nsn,mys,hzrn,tmmz,gsts,yll,km,ksm,rlk;
float ciro,komisyon=0;
cout<<" OXYGEN SOFTWARE"<<endl;
cout<<"HER AYIN CIROSUNU AYRI AYRI GIRINIZ: "<<endl;
cout<<"NISAN: "; cin>>nisan;
cout<<"MAYIS: "; cin>>mayis;
cout<<"HAZIRAN: "; cin>>haziran;
cout<<"TEMMUZ: "; cin>>temmuz;
cout<<"AGUSTOS: "; cin>>agustos;
cout<<"EYLUL: "; cin>>eylul;
cout<<"EKIM: "; cin>>ekim;
cout<<"KASIM: "; cin>>kasim;
cout<<"ARALIK: "; cin>>aralik;
cout<<"OCAK: "; cin>>ocak;
cout<<"SUBAT: "; cin>>subat;
cout<<"MART: "; cin>>mart;
ciro = nisan + mayis + haziran;
if ( haziran == 0 || haziran != 0 )
if ( temmuz == 0 || temmuz != 0 )
if ( agustos == 0 || agustos != 0 )
if ( eylul == 0 || eylul != 0 )
if ( ekim == 0 || ekim != 0 )
if ( kasim == 0 || kasim != 0 )
if ( aralik == 0 || aralik != 0 )
if ( ocak == 0 || ocak != 0 )
if ( subat == 0 || subat != 0 )
if ( mart == 0 || mart != 0 )
{
ciro = nisan + mayis + haziran;
komisyon = komisyon + ( ciro / 1000000 ) * 15 / 100;
nsn = ( nisan / 1000000 ) * 15 / 100;
mys = ( mayis / 1000000) * 15 / 100 + nsn;
hzrn = ( haziran / 1000000 )* 15 / 100 + mys;
tmmz = ( temmuz / 1000000 ) * 15 / 100 + hzrn;
gsts = ( agustos / 1000000 ) * 15 /100 + tmmz;
yll = ( eylul / 1000000 ) * 15 / 100 + gsts;
km = ( ekim / 1000000 ) * 15 / 100 + yll;
ksm = ( kasim / 1000000 ) * 15 / 100 + km;
rlk = ( aralik / 1000000 ) * 15 / 100 + ksm;
ock = ( ocak / 1000000 ) * 15 / 100 + rlk;
sbt = ( subat / 1000000 ) * 15 / 100 + ock;
mrt = ( mart / 1000000 ) * 15 / 100 + sbt;
cout<<"NISANDA ELINEZE GECEN PARA: "<<nsn<<" MILYON TL"<<endl;
cout<<"MAYISTA ELINIZE GECEN PARA: "<<mys<<" MILYON TL"<<endl;
cout<<"HAZIRANDA ELINIZE GECEN PARA: "<<hzrn<<" MILYON TL"<<endl;
cout<<"TEMMUZDA ELINIZE GECEN PARA: "<<tmmz<<" MILYON TL"<<endl;
cout<<"AGUSTOSTA ELINIZE GECEN PARA: "<<gsts<<" MILYON TL"<<endl;
cout<<"EYLULDE ELINIZE GECEN PARA: "<<yll<<" MILYON TL"<<endl;
cout<<"EKIMDE ELINIZE GECEN PARA: "<<km<<" MILYON TL"<<endl;
cout<<"KASIMDA ELINIZE GECEN PARA: "<<ksm<<" MILYON TL"<<endl;
cout<<"ARALIKTA ELINIZE GECEN PARA: "<<rlk<<" MILYON TL"<<endl;
cout<<"OCAKTA ELINIZE GECEN PARA: "<<ock<<" MILYON TL"<<endl;
cout<<"SUBATTA ELINIZE GECEN PARA: "<<sbt<<" MILYON TL"<<endl;
cout<<"MARTTA ELINIZE GECEN PARA: "<<mrt<<" MILYON TL"<<endl;
cout<<"YILLIK TOPLAM GELIRINIZ: "<<nsn + mys + hzrn + tmmz + gsts + yll + km + ksm + rlk + ock + sbt + mrt<<" MILYON TL"<<endl;
}
return 0;
}