Selasa, 15 Januari 2013


Pseudocode Deret Fibonacci

begin
        int a = 1;
        int b = 1;
        int i;
        int j;
        int iLevel;

        print ("masukan level")
        accept iLevel
     
        if ( iLevel = 1 )
        { print "0"
        }
        else
          { print "0"
             print (" ")
                for ( a= 2 ; a < = iLevel ; a ++ )
               { c = a + b;
                  a = b;
                  b = c;
               }
           }
         end if
end

Senin, 14 Januari 2013


Algoritma Segitiga Pascal


Int i = 0;
Int j = 1;
Int k = 1;
Int iBil;

Begin

print("Masukkan Level: ");

for (i=0; i<=iBil; i++)
{
   for (int j = 1; j <= iBil - i; j++)
   print(" ");
    {
       for (k = 1; k <= i; k++)
         {
             if (k==0||i==k)
             print(i + " ");
          }
    }
  printnl();
}
End

Sabtu, 20 Oktober 2012

Pseudocode Assignment

"Find the Average with 3 variables with the Pseudocode" 


Begin

nNum1, nNum2, nAverage                                   = Variable 

Accept nNum1, nNum2                                         = Input 

nAverage = (nNum1 + nNum2) /2                      = Process 

Display nAverage                                                    = Display 

End 



The Assignment From Mr. Benny B. Nasution ... 
2012, Oct 20

Rabu, 26 September 2012

His Eye Is On The Sparrow

why should I feel discouraged and why should the shadows come why should my heart feel lonely and long for heaven and home when Jesus is my portion a constant friend is He His eye is on the sparrow and I know He watches over me His eye is on the sparrow and I know He watches over me I sing because I'm happy I sing because I'm free His eye is on the sparrow
and I know He watches me He watches me His eye is on the sparrow and I know He watches I know He watches, I know He watches me. I sing because I'm happy I sing because I'm free His eye is on the the sparrow and I know He watches me He watches me His eye is on the sparrow and I know he watches me He watches me He watches me I know He watches me

Senin, 24 September 2012