Saturday, 10 October 2015
Bahasa Pemrograman : Struktur Data 01
1. Perulangan For
#include <conio.h>
#include <iostream.h>
int main(){
for(int i=1;i<10;i++){
cout<<i;
}
getch();
)
2. Perulangan While
#include <conio.h>
#include <iostream.h>
int main(){
int i;
while (i<=10){
cout<<i;
}
getch();
}
3. Perulangan Do-while
#include <conio.h>
#include <iostream.h>
int main(){
int i;
do{
cout<<i;
i++;
}
while(i<=10)
}
getch();
}
4. Fungsi
#include <conio.h>
#include <iostream.h>
void main(){
int hitung(int a, int b){
total=0;
for(int a=1;a<=b;a++){
total=total+1;
return total;
}
getch();
}
5. Template (Fungsi)
#include <conio.h>
#include <iostream.h>
void main(){
Template<Class T>
T hitung(T a, T b){
total=0;
for(T a=1;a<=b;a++)
total=total+1;
return total;
}
getch();
}
6. Fungsi Ganjil
#include <conio.h>
#include <iostream.h>
void main(){
void ganjil(int a, int b){
for(a=1;a<=b;a++){
if(a%2!0){
cout<<a<<",";
}
getch();
}
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