part #2

2.1 Dibaca sebuah bilangan bulat tampilan apakah bilangan tersebut ganjil atau genap?

Menggunakan Program C++

#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
    int f;
    cout<<"Membaca Sebuah Bilangan Ganjil atau Genap"<<endl;
    cout<<"Masukan Nilai =";cin>>f;
   
    if (f % 2 == 0){
        cout<<"Genap";
    }else {
        cout<<"Ganjil";
    }
    return 0;
}

Tampilan

Share this

Related Posts

Previous
Next Post »