0% found this document useful (0 votes)
123 views1 page

Latihan Kode Program C++: Penjumlahan Deret Angka

This document provides code examples for summing series of numbers in C++ using for and while loops. It includes the full code for programs that take user input for the number of terms, output the series being summed, and display the total. Tips and explanations are provided for key concepts like variables, data types, arithmetic operators, and loop structures.

Uploaded by

hahaha Hahahah
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
123 views1 page

Latihan Kode Program C++: Penjumlahan Deret Angka

This document provides code examples for summing series of numbers in C++ using for and while loops. It includes the full code for programs that take user input for the number of terms, output the series being summed, and display the total. Tips and explanations are provided for key concepts like variables, data types, arithmetic operators, and loop structures.

Uploaded by

hahaha Hahahah
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Jumbo Cashback 10% Hingga 4 JT

Promo eksklusif! Brand ternama di Shopee, nikmati Jumbo


Cashback 10% s/d 4JT
Shopee Beli Sekarang

!"#$ $ #

" 'H)/+ U6#)-$"2'011 !"#$%"&'K)*+'<-).-"/'011B

<+&76/2"%"&'F+-+#'?&.("

Latihan Kode
Program C++:
Penjumlahan Deret
Angka
@S'^5#'@@ '_ '?&*-+ '_ 'U6#)-$"2'011 '_ 'J)

0)//+&#4

!"#$%"&'()*+',-).-"/'011'("2$'$&$'"("&
/+/3"%"4'5"-"'/+/36"#',+&76/2"%"&
*+-+#'"&.("8'9"#+-$'$&$'6/6/&:"'*$,"("$
6&#6('/+&.67$',+/"%"/"&'4+,6#"-
),+-"#)-'"-$#/"#$("'4+-#"',+-62"&."&8

Soal Penjumlahan Deret


Angka
;6"#2"%'()*+',-).-"/'*"2"/'3"%"4"'011
6&#6('/+&"/,$2("&'*"&'/+&76/2"%("&
#)#"2'*+-+#'"&.("8'<-).-"/'/+/$&#"'=
$&,6#"&'3+-6,"'#)#"2'*+-+#':"&.
*$$&.$&("&>'2"26'#"/,$2("&'76/2"%'#)#"2'*"-$
*+-+#'#+-4+36#8

?."-'2+3$%'/+&"&#"&.>'36"#'*"2"/'@'A+-4$
,+-62"&."&B'!"#$%&'(&')*+#'*"&
!"#$%&'(&'),-.%"8

;+-$(6#'5)&#)%'#"/,$2"&'"(%$-':"&.
*$$&.$&("&'C=D'B

## Program C++ Penjumlahan Deret ##


===================================

Jumlah deret yang diinginkan: 10

1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 +
55

;+-$(6#'5)&#)%'#"/,$2"&'"(%$-':"&.
*$$&.$&("&'C@D'B

## Program C++ Penjumlahan Deret


===================================

Jumlah deret yang diinginkan: 15

1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 +
120

Tips Kode Program


Penjumlahan Deret
Angka
E)"2'$&$'/+2"#$%'2).$("',+/"%"/"&
#+&#"&.'5"-"',+&..6&""&'+!"#&/+#
&#./0&/.1&)4+-#"'!"#$%&'(&')*+#'6&#6(
/+/36"#'*+-+#8';+-$(6#'#6#)-$"2
,+&*"%626"&':"&.'3$4"'*$$(6#$B

! Pengertian Variabel dalam Bahasa


C++
! Tipe Data Integer Bahasa C++
! Jenis-jenis Operator Aritmatika
Bahasa C++
! Perulangan FOR Bahasa C++

?&.("'$&,6#'3$4"'*$4$/,"&'(+'*"2"/'4"#6
A"-$"3+2'$&#+.+->'(+/6*$"&'36"#
,+-62"&."&'6&#6('/+&"/,$2("&'*+-+#8'F$
*"2"/',+-62"&."&'$&$>'#"/,6&.'"&.("
*+-+#'*"&'#"/,$2("&'%"4$2&:"'4+#+2"%
,+-62"&."&'4+2+4"$8

E$2"%("&'"&*"'5)3"'4+3+&#"-'6&#6(
/+/36"#'()*+',-).-"/'*"-$'4)"2'*$'"#"48

Kode Program C++


Penjumlahan Deret
Angka (versi Perulangan
For)
;+-$(6#'4"2"%'4"#6'4)264$'*"-$'4)"2
,+&76/2"%"&'*+-+#'"&.("'/+&..6&"("&
3"%"4"',+/-).-"/"&'011'CA+-4$
,+-62"&."&'G)-DB

1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << "## Program C++ Pen
7 dl;
8 cout << "===================
9 dl;
10 cout << endl;
11
12 int i, n, total;
13
14 cout << "Jumlah deret yang d
15 cin >> n;
16 cout << endl;
17
18 total = 1;
19 cout << 1;
20 for (i = 2; i <= n; i++) {
21 cout << " + " << i;
22 total = total + i;
23 }
24 cout << " = " << total;
25
26 cout << endl;
return 0;
}

H"4$2'()*+',-).-"/B

<-).-"/'/+/$&#"'='*"#"'$&,6#"&'3+-6,"
76/2"%'*+-+#',"*"'3"-$4'=I8'J$2"$'$&$
*$4$/,"&'(+'*"2"/'A"-$"3+2' n '*+&."&
,+-$&#"%' cin >> n 8

K+/6*$"&'*$'3"-$4'=L'A"-$"3+2' total '*$'$4$


"&.("'=8'M"-$"3+2'$&$2"%':"&.'&"&#$&:"
"("&'($#"',"("$'6&#6('/+&"/,6&.'#)#"2
4+26-6%'*+-+#'"&.("8

F$'3"-$4'=N>'2"&.46&.'*$' cout '"&.("'=


4+3"."$'!"#$'6&#6('/+/6*"%("&'/+/36"#
#"&*"'O'1'O'4""#'/+&"/,$2("&'*+-+#'&"&#$8

<-)4+4'/+&"/,$2("&'*+-+#'*$2"(6("&')2+%
,+-62"&."&'G)-'*$'3"-$4'=PQ@=8'<+-62"&."&
*$/62"$'*"-$' i = 2 '("-+&"'"&.("'='46*"%
($#"'#"/,$2("&'4+3+26/&:"8'<+-$&#"%' cout
<< " + " << i '"("&'/+&"/,$2("&'#+(4
R + 2 + 3 + 4 + 5 + ... + n R8

<-)4+4',+&76/2"%"&'*+-+#'*$2"(6("&
*+&."&',+-$&#"%' total = total + i '*$
3"-$4'@S8'K)*+'$&$'"("&'/+&"/3"%'$4$
A"-$"3+2' total '*+&."&' i '*"&
/+&:$/,"&&:"'(+/3"2$'(+'*"2"/'A"-$"3+2
total 8'T&$'#+-64'*$2"(6("&'4"/,"$
,+-62"&."&'4+2+4"$8

U+-"(%$->'#$&.."2'#"/,$2("&'$4$'A"-$"3+2
total '*+&."&',+-$&#"%' cout '*$'3"-$4'@@8
U$*"('26,"'#"&*"'4"/"'*+&."&'O'V'O'"."-
#"/,$2"&&:"',"4'*+&."&'#)#"2'*+-+#8

F+/$($"&'()*+',-).-"/',+&76/2"%"&
*+-+#'"&.("'*+&."&',+-62"&."&'G)-8

Avenzel Hotel and Convention Cibubur Pesan


Sekarang
Jakarta Timur

Rp 900,000
Omah Loji @ Mega Kuningan

Kode Program C++


Penjumlahan Deret
Angka (versi Perulangan
While)
W&#6('A+-4$',+-62"&."&'X%$2+>'($#"',+-26
R/+/3)&.("-O'()&*$4$'"X"2>'()&*$4$'"(%$->
*"&',-)4+4'$&5-+/+&#'*"-$'A+-4$
,+-62"&."&'G)-8';+-$(6#'%"4$2
/)*$Y("4$&:"B

1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 cout << "## Program C++ Pen
7 dl;
8 cout << "===================
9 dl;
10 cout << endl;
11
12 int i, n, total;
13
14 cout << "Jumlah deret yang d
15 cin >> n;
16 cout << endl;
17
18 cout << 1;
19 total = 1;
20 i = 2;
21 while (i <= n) {
22 cout << " + " << i;
23 total = total + i;
24 i++;
25 }
26 cout << " = " << total;
27
28 cout << endl;
return 0;
}

J$2"$'"X"2'A"-$"3+2'$'*$#62$4',"*"'3"-$4'=P>
#+,"#'4+3+26/'/"46('(+'*"2"/
,+-62"&."&'X%$2+8

K)&*$4$':"&.'%"-64'*$,+&6%$'6&#6(
,+-62"&."&'X%$2+'"*"2"%' i <= n >':"&.
3+-"-#$',+-62"&."&'"("&'#+-64'3+-7"2"&
4+2"/"'&$2"$'A"-$"3+2' i '/"4$%'(6-"&.'*"-$
A"-$"3+2' n 8

F"2"/'4+#$",',+-62"&."&>'#+#",'7"2"&("&
,+-$&#"%':"&.'4"/"'4+,+-#$'*$',+-62"&."&
G)->':"(&$'#"/,$2("&'"&.("'*+-+#'*+&."&
,+-$&#"%' cout << " + " << i >'*"&
%$#6&.'#)#"2'"&.("'*+-+#'*+&."&',+-$&#"%
total = total + i 8

U$*"('26,">',+-26',+-$&#"%'$&5-+/+&#' i++
6&#6('/+&"$(("&'&$2"$'A"-$"3+2'$'*"2"/
4+#$",'$#+-"4$8'<+-62"&."&'X%$2+'56(6,
-"X"&'#+-7"*$'#%&%#!'()**+'7$("'($#"'26,"
/+/36"#',+-$&#"%'$&5-+/+&#8

T#62"%'()*+',-).-"/',+&76/2"%"&'*+-+#
"&.("'6&#6('A+-4$',+-62"&."&'X%$2+8

F+/$($"&'()*+',-).-"/',+&76/2"%"&
*+-+#'"&.("'/+&..6&"("&'3"%"4"
,+/-).-"/"&'0118'E+/)."'#6#)-$"2'$&$
3$4"'3+-/"&G""#8

U".4B' ?2.)-$#/">' ;+2"7"-'0>' 011>' *+-+#>' F+-+#


?&.(">' !"#$%"&'E)"2>' E)"2'?2.)-$#/"

ADD COMMENT

0)//+&#'U+Z#[

J"/+[

\/"$2[

]+34$#+

Saya bukan robot


reCAPTCHA
Privasi - Persyaratan

' J)#$G:'/+')G'G)22)XQ6,'5)//+&#4'3:
+/"$28

' J)#$G:'/+')G'&+X',)4#4'3:'+/"$28

2345)6377895

eBook Programming
Duniailkom

0"-"',+/+4"&"&'+;))('`';6(6'F6&$"$2()/

List Tutorial Duniailkom

U6#)-$"2'U+-3"-6'F6&$"$2()/

U6#)-$"2'HU9!

U6#)-$"2'0EE

U6#)-$"2'<H<

U6#)-$"2'9:Eb!

U6#)-$"2'a"A"E5-$,#

U6#)-$"2';"%"4"'0

U6#)-$"2';"%"4"'011

U6#)-$"2'a"A"

U6#)-$"2'<:#%)&

U6#)-$"2'<"45"2

U6#)-$"2'!"-"A+2'c

U6#)-$"2';))#4#-",'d

U6#)-$"2'e+"5#'aE

U6#)-$"2'])-*<-+44

U6#)-$"2'7b6+-:

9+/36"#']+3'^&2$&+

e+A$+X'a6-64"&'K62$"%

;2).'F6&$"$2()/

Tutorial Belajar C++

=8'<+&.+-#$"&';"%"4"'011

@8'<+-3+*""&'0'*+&."&'011

I8'0"-"'9+&.$&4#"22'0)*+BB;2)5(

f8'0"-"'9+&7"2"&("&'K)*+'011

d8'E#-6(#6-'F"4"-'011

L8'?#6-"&'F"4"-'K)*+'011

N8'<+&.+-#$"&'M"-$"3+2'011

P8'<+&.+-#$"&'K)&4#"&#"'011

c8'g6&.4$'<+-$&#"%'5)6#

=S8'g6&.4$'<+-$&#"%'5$&

==8'a+&$4Q7+&$4'U$,+'F"#"'011

=@8'U$,+'F"#"'0%"-'011

=I8'U$,+'F"#"'T&#+.+-'011

=f8'U$,+'F"#"'g2)"#'*"&'F)632+'011

=d8'U$,+'F"#"';))2+"&'011

=L8'U$,+'F"#"'E#-$&.'011

=N8'U$,+'F"#"'?--":'011

=P8'U$,+'F"#"'E#-65#'011

=c8'U$,+'F"#"'\&6/'011

@S8'U$,+'F"#"'<)$&#+-'011

@=8'a+&$4Q7+&$4'^,+-"#)-'011

@@8'^,+-"#)-'?-$#/"#$("'011

@I8'^,+-"#)-'T&5-+/+&#'`
F+5-+/+&#

@f8'^,+-"#)-'<+-3"&*$&."&'011

@d8'^,+-"#)-'!).$("'011

@L8'^,+-"#)-';$#X$4+'011

@N8'^,+-"#)-'<+&6."4"&'011

@P8'<+-5"3"&."&'Tg'011

@c8'<+-5"3"&."&'Tg'\!E\'011

IS8'<+-5"3"&."&'Tg'\!E\'Tg'011

I=8'<+-5"3"&."&'EX$#5%'0"4+'011

I@8'<+-62"&."&'g^e'011

II8'<+-62"&."&']HT!\'011

If8'<+-62"&."&'F^']HT!\'011

Id8'<+&.+-#$"&'<+-$&#"%';e\?K'011

IL8'<+&.+-#$"&'<+-$&#"%'0^JUTJW\
011

IN8'0"-"'9+/36"#'g6&5#$)&

IP8'<+&.+-#$"&'<"-"/+#+-'`
?-.6/+&

Ic8'g6&.4$'<+-$&#"%'e+#6-&

fS8'<+&.+-#$"&'F+G"62#'<"-"/+#+-

f=8'g6&5#$)&'^A+-2)"*$&.

E)"2'!"#$%"&'?2.)-$#/"';"%"4"'011

Daftar Tutorial OOP C++

U6#)-$"2'^^<'011

Forum Diskusi (Facebook


Group)

Berlangganan Artikel
Duniailkom

F","#("&',+/3+-$#"%6"&'6&#6('4+#$",'"-#$(+2
*"&'#6#)-$"2'#+-3"-6'F6&$"$2()/

\/"$2'?**-+44

E6345-$3+

a)$&'=L>=N@')#%+-'46345-$3+-4

Duniailkom
!"#$%

!&''

!("(

!$)'*%

!+,-,'&./(#

!01.2(.3''

!03415%/53

!(,'&,%

F6&$"$2()/'"*"2"%'4$#64'3+2"7"-',-).-"//$&.'*"&'$2/6
()/,6#+-8'F$%"-",("&'*6&$"$2()/85)/'*","#'/+&7"*$
/+*$"'3+2"7"-'*"&'4"2$&.'3+-3".$'#+&#"&.',-).-"//$&.>
%"-*X"-+>'/"6,6&'#+)-$'4+,6#"-'*6&$"'()/,6#+-8'T(6#$
"(6&'/+*$"'4)5$"2'*6&$"$2()/'6&#6('6,*"#+'#+-3"-6B
g"5+3))('F6&$"$2()/>'UX$##+-'F6&$"$2()/
#
___ Pelajari Lebih Lanjut
Learn More
0),:-$.%#'h'@S@I'F6&$"$2()/'_'H)4#$&.'-+()/+&*"4$
F6&$"$2()/

!"#$%&'(&)%" _ *#+,-./&*'0+./ _
Skip Ad
1+%.0-+$"# _ Iklan : (0:14)
-2')!&)% _ .'3!-.!&)%
!"

You might also like