APLIKASI JUMLAH DERET

#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 m,jumlah=0;
cout<<"masukan suku ke = ";cin>>m;
for(int i=0;i<=m;i++)
jumlah+=i;
cout<<"jumlah deret :"<<m<<"suku="<<jumlah;
    return 0;
}



0 komentar: