Ticker

6/recent/ticker-posts

Program Tahun Kabisat dan Konversi Suhu

#include <iostream>
Program Tahun Kabisat dan Konversi Suhu#include <cstdlib>
#include <string.h>
#include <math.h>
#include <stdio.h>
#include <conio.h>
using namespace std;
void cetofa(){
float c,fr,re;
cout<<"masukkan nilai celcius:";cin>>c;
fr=(c*9/5)+32;
cout<<"fahrenheit adalah:"<<fr<<endl;
re=c*4/5;
cout<<"reamur adalah:"<<re<<endl;
}

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char *argv[]) {
int i,j,kabisat,masehi,number;
float fr;
do{
cout<<"tekan 1 untuk melihat program tahun kabisat"<<endl;
cout<<"tekan 2 untuk melihat program konversi suhu"<<endl;
cout<<"tekan 3 untuk keluar dari program"<<endl;
cout<<"masukkan no:";cin>>number;
switch(number){
case 1:
cout<<"\t\tmembuat program penghitung tahun kabisat"<<endl<<endl;
cout<<"sampai tahun-";cin>>j;
for(i=1;i<=j;i++){
if(i%4==0)
cout<<"tahun kabisat:\t"<<i<<endl;
else
cout<<"bukan:\t\t"<<i<<endl;
}
cout<<endl;
break;
case 2:
cetofa();
cout<<endl;
    break;
    default:
cout<<"no yang anda tuju sedang sibuk"<<endl<<endl;
cout<<"terimakasih..."<<endl<<endl;

   }
   }while(number!=3);


return EXIT_SUCCESS;
}

Posting Komentar

0 Komentar