:::: MENU ::::
  • life isn't about getting and taking , it's about giving and being

  • Identify your passion then design your future

Jumat, 18 Maret 2016


1. Algoritma mencari jumlah 3 bilangan bulat
    - Deklarasi
       a,b,c tipe data integer (input)
       jumlah tipe data integer (output)
    - Deskripsi
      membaca inputan variable a,b,c
      variable a,b,c, dimasukkan ke rumus jumlah=a+b+c
      outputnya rumus jumlah

 2.Sourch Code C++

 #include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
    int a,b,c,jumlah;
   
    cout<<"Penjumlahan Integer"<<endl;
    cout<<"Masukkan Integer a : ";
    cin>>a;
    cout<<"Masukkan Integer b : ";
    cin>>b;
    cout<<"Masukkan integer c : ";
    cin>>c;
   
    jumlah=a+b+c;
   
    cout<<endl<<endl;
    cout<<"Hasil penjumlahan 3 integer adalah : "<<jumlah;
    return 0;
}





 3.Dengan Raptor

 

0 komentar:

Posting Komentar

Thank's udah mampir guys