suparty beauty

suparty beauty

Rabu, 20 April 2011

program menghitung baris dan deret

#include <cstdlib>
#include <iostream>

using namespace std;

class hitung
{
     
public:
       int proses();
       void input();

private:
        int n;
        float rumus,jumlah,total;
};

void hitung::input()
{
     cin >> n;
     cout << endl;
}
   
int hitung::proses()
{
    jumlah = 0;
    total = 0;
    rumus = -1;

          for(int j=1; j<=n; j++){
                  rumus = (rumus * (-1));
                  total = rumus / j;
                  jumlah+= total;
                  if(j==1)
                  cout << " ( " << total << " ) ";
                       if( j > 1)
                           cout << " + ( " << total << " ) ";
}

cout << endl << endl << " Jumlah Rekursif = " << jumlah;
cout << endl;

return jumlah;
}

int main(int argc, char *argv[])
{
    cout << " Program Menghitung Jumlah dari Dumus 1-(1/2)+(1/3)-(1/4)+...+(1/n) ";
    cout << endl;
    cout << endl;
    cout << " Masukkan Nilai n : ";
   
    hitung deret;
    deret.input();
    deret.proses();
   
    system("PAUSE");
    return EXIT_SUCCESS;
}
    mari kita saksikannn hasil dari program di atas ...... ... di bawah ini
silahkan ... jika yang mau  ... program ini ... ... silahkan  ya..dan selamat mencobanya  ya..




let us saksikannn res ult of the above program ...... ... below
please ... if that would ... This program ... ... yes please try it .. and yes .. congratulations

waduhhh tennis there is an error .. moment .. before I'm Sorry....

Tidak ada komentar:

Posting Komentar