Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

LATIHAN

MID 2 TIK XD 2011


8 9 11 14 18
#include<iostream> using namespace std; int main () { } int a,b,c; a=8; for(b=0;b<=4;b++) { } return 0; a=a+b; cout<<a<<" ";

1 1 2 3 5 8
include<iostream> using namespace std; int main () { int a[10],b,c,d; a[1]=1; a[0]=0; for(b=1;b<=6;b++) { c=b-1;d=b-2; a[b]=a[c]+a[d]; Page 1

XD DOCUMENT

} } return 0; cout<<a[b]<<" ";

* * * * * *
#include<iostream> using namespace std; int main () { int b,i,s; cout<<"Input = "; cin>>i; for(b=1;b<=i;b++) { } for(s=b;s<=i;s++) {cout<<" ";} for(s=1;s<=b;s++) {cout<<"* ";} cout<<endl;

return 0; }

XD DOCUMENT

Page 2

4 3 4 2 3 4 1 2 3 4
#include<iostream> using namespace std; int main () { } int b,k,x; cout<<"Input = "; cin>>e; for(b=e;b>=1;b--) { } return 0; for(k=b;k<=e;k++) { } cout<<endl; cout<<k;

XD DOCUMENT

Page 3

You might also like