Saturday, 10 October 2015
Bahasa Pemrograman : Struktur Data 03
1. 3 Jenis Perulangan C++
For
Mencetak bilangan 10 sampai 1.
Void cetaklah(int i, int j){
int i=10;
int j=1;
for(i=10;i>=j;i--){
cout<<i;
}
Do...while
Mencetak bilangan 10 sampai 1.
void cetaklah(int i, int j){
int i=10;
int j=1;
do{
cout<<i;
}
while(i>j){
cout<<"Selesai";
}
While
Mencetak bilangan 10 sampai 1.
void cetaklah(int a, int b){
int i=a;
while(i>=b){
cout<<" I = "<<i;
}
2. Array
void masukandata(int A[], int n){
for(int i=0;i<=n;i++){
cout<<"Masukan Data ke"<<i+1;
cin>>A[i];
}
int jumlahkan(const int A[], int n){
int total=0;
for(int=0;i<n;i++){
total += A[i];
return total;
}
Subscribe to:
Post Comments (Atom)
R-chord 謝和弦 - I'm Not Your Prince Charming 我不是白馬王子 Lyrics 歌詞 with Pinyin
R-chord 謝和弦 x 高爾宣 & 李傑明 - I'm Not Your Prince Charming 我不是白馬王子 (Wo Bu Shi Bai Ma Wang Zi) Lyrics 歌詞 with Pinyin | 謝和弦 我不是白馬王子 歌詞 ...
-
He Yi Hang 賀一航 - Please Say Hello First 請先說你好 (Qing Xian Shuo Ni Hao) Lyrics 歌詞 with Pinyin | 賀一航 請先說你好 歌詞 Singer: He Yi Hang 賀一航 Album: Ple...
-
Wang Yi Tai 王以太 - Mu Bu Zhuan Jing 目不轉睛 Lyrics 歌詞 with Pinyin | 王以太 目不轉睛 歌詞 Singer: Wang Yi Tai 王以太 Album: Mu Bu Zhuan Jing 目不轉睛 Title: Mu B...
-
Ann 白安 - After You Left 離開後 (Li Kai Hou) Lyrics 歌詞 with Pinyin | 白安 離開後 歌詞 Singer: Ann 白安 Album: 1990s Title: 離開後 (Li Kai Hou) English Title...
No comments:
Post a Comment