Selasa, 24 April 2012

We are young(tonight)

Give me a second I
I need to get my story straight
My friends are in the bathroom
getting higher than the Empire State
my lover she's waiting for me
just across the bar
My seats been taken by some sunglasses
asking 'bout a scar
and I know I gave it to you months ago
I know you're trying to forget
but between the drinks and subtle things
the holes in my apologies
you know I'm trying hard to take it back
so if by the time the bar closes
and you feel like falling down
I'll carry you home
Tonight
We are young
So let's set the world on fire
We can burn brighter
than the sun
Tonight
we are young
so let's set the world on fire
we can burn brighter
than the sun
Now I know that I'm not
all that you got
I guess that I
I just thought maybe we could find new ways to fall apart
But our friends are back
So let's raise a toast
Cause I found someone to carry me home

Tonight
We are young
So let's the set the world on fire
we can burn brighter
than the sun
Tonight
We are young
so let's set the world on fire
we can burn brighter
than the sun
Carry me home tonight
Just carry me home tonight
Carry me home tonight
Just carry me home tonight
The world is on my side
I have no reason to run
So will someone come and carry me home tonight
The angels never arrived
but I can hear the choir
so will someone come and carry me home
Tonight
We are young
So I set the world on fire
we can burn brighter
than the sun
Tonight
We are young
so I set the world on fire
we can burn brighter
than the sun
So if by the time the bar closes
and you feel like falling down
I'll carry you home tonight

Selasa, 17 April 2012

Perkalian 2 bilangan bulat dengan menggunakan operator Penjumlahan(raptor)

Langkah pertama buat raptor seperti pada gambar dibawah dalam fungsi main :
 Langkah kedua buatlah raptor seperti dibawah ini pada fungsi baru dengan nama bebas :

Praktikum 2

Menentukan bangun persegi dan Persegi Panjang
for program c++ http://onetimevictory.blogspot.com/2012/04/menentukan-bangun-persegi-dan-persegi.html

Menentukan bangun persegi dan Persegi Panjang(c++)



#include <cstdlib>
#include <iostream>

using namespace std;
      class bangun{
            friend ostream& operator<<(ostream&, bangun&);
            friend istream& operator>>(istream&, bangun&);
      
      public:
      bangun(){};
      void proses(){}
                  private:
              int p;
              int l;
              };

    istream& operator>>(istream& in, bangun& x){
             cout<<"Masukkan panjang:";
             in>>x.p;
             cout<<"masukkan lebar:";
             in>>x.l;
             return in;
             }
             
   ostream& operator<<(ostream& out , bangun& z){    
      if(z.p==z.l){
               out<<"Bangun persegi";

      }else 
            out<<"Bangun persegi panjang";   
            }
    int main(int argc, char *argv[]){
    bangun a;
    cin>>a;
    cout<<a ;           
    system("PAUSE");
    return EXIT_SUCCESS;
}

Fungsi rekursif(raptor)

Contoh Fungsi Rekursif Pada Raptor :
 Kemudian buat Raptor pada Fungsi Rekursif dengan Nama beda 3 :
Contoh Fungsi Rekursif Pada Raptor :

Praktikum 3

Menampilkan Deret Bilangan Fibonacci dengan Menggunakan Raptor
for raptor http://onetimevictory.blogspot.com/2012/04/menampilkan-deret-bilangan-fibonacci.html

Menampilkan Deret Bilangan Fibonacci ( raptor)


Menampilkan bilangan terbesar antara 3 bilangan bulat dengan menngunakan (c++)



#include <iostream>
#include <string>

using namespace std;
int main()
{
   string raptor_prompt_variable_zzyz;
   int x;
   int y;
   int z;
   int maks;

   raptor_prompt_variable_zzyz ="masukkan X : ";
   cout << raptor_prompt_variable_zzyz << endl;
   cin >> x;
   raptor_prompt_variable_zzyz ="masukkan Y :";
   cout << raptor_prompt_variable_zzyz << endl;
   cin >> y;
   raptor_prompt_variable_zzyz ="masukkan Z :";
   cout << raptor_prompt_variable_zzyz << endl;
   cin >> z;
   maks =x;
   if (y>maks)
   {
      if (y>z)
      {
         cout << "bil maks : " <<y<< endl;      }
      else
      {
         cout << "bil maks :"<<z << endl;      }
   }
   else
   {
      if (z>maks)
      {
         cout << "bil maks :"<<z << endl;      }
      else
      {
         cout << "bil maks :"<<x << endl;      }
   }

   system("PAUSE");
   return EXIT_SUCCESS;
}

Menampilkan bilangan terbesar antara 3 bilangan bulat dengan (raptor)


Mencari akar-akar persamaan kuadrat(raptor)


Program c++ Menentukan Nama Bulan dengan Inputan Angka


Ini adalah program c++ dalam menentukan nama nama bulan sesuai dengan inputan angka
misal di inputkan angka 1 maka yang muncul adalah BULAN JANUARY dan seterusnya

#include <iostream>
#include <string>

using namespace std;
int main()
{
   string raptor_prompt_variable_zzyz;
   int a;

   raptor_prompt_variable_zzyz ="masukkan angka 1 sampai dengan 12 :";
   cout << raptor_prompt_variable_zzyz << endl;
   cin >> a;
   if (a==1)
   {
      cout << "BULAN JANUARY" << endl;   }
   else
   {
      if (a==2)
      {
         cout << "BULAN FEBRUARY" << endl;      }
      else
      {
         if (a==3)
         {
            cout << "BULAN MARCH" << endl;         }
         else
         {
            if (a==4)
            {
               cout << "BULAN APRIL" << endl;            }
            else
            {
               if (a==5)
               {
                  cout << "BULAN MAY" << endl;               }
               else
               {
                  if (a==6)
                  {
                     cout << "BULAN JUNE" << endl;                  }
                  else
                  {
                     if (a==7)
                     {
                        cout << "BULAN JULY" << endl;                     }
                     else
                     {
                        if (a==8)
                        {
                           cout << "BULAN AUGUST" << endl;                        }
                        else
                        {
                           if (a==9)
                           {
                              cout << "BULAN SEPTEMBER" << endl;                           }
                           else
                           {
                              if (a==10)
                              {
                                 cout << "BULAN OCTOBER" << endl;                              }
                              else
                              {
                                 if (a==11)
                                 {
                                    cout << "BULAN NOVEMBER" << endl;                                 }
                                 else
                                 {
                                    if (a==12)
                                    {
                                       cout << "BULAN DECEMBER" << endl;                                    }
                                    else
                                    {
                                       cout << "INPUTAN SALAH" << endl;                                    }
                                 }
                              }
                           }
                        }
                     }
                  }
               }
            }
         }
      }
   }

   system ("PAUSE");
   return EXIT_SUCCESS;
}

Praktikum 4

Membalikkan kata dengan Fungsi Rekursif
for program C++ http://onetimevictory.blogspot.com/2012/04/program-c-membalikkan-kata-dengan.html

Program C++ Membalikkan kata dengan Fungsi Rekursif


#include <cstdlib>
#include <iostream>

using namespace std;
class Balik{
      friend istream& operator>>(istream&, Balik&);
      friend ostream& operator<<(ostream&, Balik&);
      public:
            void balik_kata();
            void balik(char *s);
      private:
              char kata[50];
};

void Balik::balik_kata(){
    cout<<"Masukkan Kata Yang Akan Dibalik : ";
    cin>>kata;
    strrev(kata);
    cout<<"Kata Setelah Dibalik : "<<kata<<endl;
}

void Balik::balik(char *s){
    if (*s != '\0'){
           balik(&s[1]);
           cout<<s[0];
           }
           }

int main(){

 Balik X;
 X.balik_kata();

   system("PAUSE");
   return EXIT_SUCCESS;
}

Raptor Menentukan bilangan terbesar(function)

Pertama buat raptor dalam fungsi main
 kemudian buat fungsi nama bebas seperti raptor dibawah ini

Raptor function

contoh Raptor yang menggunakan FUNCTION :
 Kemudian buatlahlah raptor dengan Function Kali :

Program C++ menghitung sebuah volume bola


#include <iostream>
#include <string>

using namespace std;
int main()
{
   string raptor_prompt_variable_zzyz;
   int r;
   int phi;
   int v;

   raptor_prompt_variable_zzyz ="masukkan r:";
   cout << raptor_prompt_variable_zzyz << endl;
   cin >> r;
   phi =3.14;
   v =(4/3)*phi*r*r*r;
   cout << "volume bola:"<<v << endl;
   system("PAUSE");
   return EXIT_SUCCESS;
}

Raptor menghitung sebuah volume bola


Praktikum 1

ARRAY (2)

Buat program untuk menampilkan semua nilai yang disimpan di dalam array dari index 0 sampai 9 ke layar.


#include
#include


using namespace std;


int main(int argc, char *argv[])
{
    int array [10];
    int array2[11];
    int data;
   
 
    cout&lt;&lt;&quot;Inisisalisasi array\n&quot;;
    for(int i=0;i&lt;10;i++){
    cout&lt;&lt;&quot;Array ke :[&quot;&lt;&lt;i&lt;&gt;data;
    array[i]=data;
    array2[i]=array[i]++;
 
                       }
    cout&lt;&lt;&quot;\n---------- cetak array \n&quot;;
    for(int i=0; i&lt;10; i++){
            cout&lt;&lt;&quot;isi data array[&quot;&lt;&lt;i&lt;&lt;&quot;]=&quot;&lt;&lt;array[i]&lt;&lt;endl;
           
            }
            cout&lt;&lt;endl;

system(&quot;PAUSE&quot;);
    return EXIT_SUCCESS;
}

ARRAY (1)


1..Buat program untuk menyimpan nilai dari 1 sampai 10 ke dalam sebuah array 1 dimensi yang memiliki panjang 10.

#include
#include

using namespace std;

int main(int argc, char *argv[])
{
int array [10];
int array2[11];
int data;

cout<<"Inisisalisasi array\n";
for(int i=0;i<10;i++){
cout<<"Array ke :["<<i<>data;
array[i]=data;
array2[i]=array[i]++;

}

system(“PAUSE”);
return EXIT_SUCCESS;
}

Minggu, 15 April 2012

Logic Game




Tingkat 0 -- Pemanasan Dulu.
Tingkat 1 -- Lumayanlah Naik lefel (Normal).
Tingkat 2 -- Menang Hadiahnya Rp.500, (Lumayan tambah Heunteu).
Tingkat 3 -- Silahkan kalo menang hebat banget deh.

Sabtu, 14 April 2012

Observation Algorithm in Real Life


Lesehan eating at home there are various structures that have different functions in carrying out their duties. From the observation that we do, we obtained the following data.

A. Type of structure and function of the structure:
1. Restaurant owner Lesehan (galang) :
Giving money to the cashier and told all employees to work with the maximum.
2. Cashier (oktavioly) :
Managing money and buy all restaurant equipment serving the customer payments.
3. Chef (yunus and ery. j) :
Cook the food and drinks.
4. Waiter (deris) :
a) Provide a list of foods and beverages to customers.
b) Presentation of the food and drinks to customers.
c) Take food and beverage equipment used by the customer and dishwasher tukng
5. Dishwashing (ivan and abdullah ) :
Washing eating utensils and drinking that has been used.
6. Customer (dyas) :
buy food and drinks.

B. Chronology of events in the restaurant lesehan :
a. Before the restaurant opened Lesehan, restaurant owner is giving the task to the manager to manage all employees.
b. Lesehan restaurant owner gives money to the treasurer to purchase restaurant equipment (food, beverages, and cleaning tools)
c. Manager requesting cleaning services to clean and organize every room in the house eating Lesehan.
d. Treasurer buy restaurant equipment.
e. If the place of the Lesbian in restaurants are clean and all equipment available, the restaurant ready to open.
f. Customers came and parked his bike in front of the restaurant Lesehan.
g. Customer walks into a restaurant lesehan to buy food.
h. Customers choose their seats that have been provided.

Input:
* Customers choosing the food and drinks while the waiter records of customer orders and then returns a list of food and drink to the waiter.
* The waiter gave a list of foods and beverages selected by the customer to the chef.

Process:
* Chef cooking food and beverages selected by the customer.
* If food and beverages are cooked waiters deliver food and drinks to customers.
* Customers enjoy food and beverages that are served by waiters.
* When customers are finished eating, the customer asked for the bill to the waiter to pay for all the food in the eating.

Output:
* Subscribers to the cashier to pay for food that is in the eating. Payments made in cash. If there is a change, the cashier will give you the change to customers.
* Then the customer leaves the restaurant Lesehan and headed to the parking lot to his vehicle minaiki.
* After the customer left, the waiter took the food and beverage equipment already in use.
s. The waiter gave food and beverage equipment is already used to the dishwasher to wash dishes - such plates.
t. After the restaurant closed Lesehan, all employees at the restaurant was clean the whole room.
u. In addition, the cashier calculates earnings results today and the report given to the Lesehan homeowners.

Diskusi Minggu ke-7 : Array


Input :Mahasiswa memasuki ruanggan Ujian Tengah Semester
Proses : Mahasiswa menempati tempat duduk sesuai nomer tempat duduk yang telah di tentukan di kartu Ujian Tengah Semester
Output : Mahasiswa duduk sesuai nomor tempat duduknya masing masing

Kesimpulan:
Setiap mahasiswa yang ingin mengikuti  Ujian Tengah Semester , harus mengambil kartu  Ujian Tengah Semester  dulu,
agar tau nomor,ruang  Ujian Tengah Semester ,hari, tanggal ujian,
mahasiswa menempati ruangan yang tertera dalam kartu ujian,
mahasiswa menempati tempat duduk yang tertera dalam kartu ujian

Pertemuan Ketujuh Alpro




Bahan pertemuan ketujuh

Materi kuliah minggu 7 adalah : http://adf.ly/7Bmv2

Tentang pertemuan ketujuh


Minggu ke-tujuh  ini bisa di katakan minggu tekhir pertemuan algoritama dan  pemrograman sebelum uts di laksanan , dalam kesempatan kali ini di isi dengan sesi tanya jawab , bagi yang belum tahu akan di berikan penjelasan sebagaimana mestinya , selain itu kembali mengulas tentang rekursif dan iteraktif,

semua mahasiswa pun berantusias dalam melakukan tanya jawab tersebut , selanjutnya dosen pun melanjutkan materinya tentang array , untuk array mahasiswa pun di kasih tugas langsung untuk lebih paham dengan kasus array yaitu sebagai input, proses dan output ,, walau sedikit salah-salah dalam menentukan itu, namun dengan pengarahannya semuanya pun bisa


HASIL BELAJAR




© 11 April 2012
===============================================================
source : http://tif.uad.ac.id/new_forum/index.php?topic=1238.msg10237#msg10237
copyright : http://tif.uad.ac.id/new_forum/index.php

Pertemuan Keenam Alpro



Bahan pertemuan k
eenam
Materi kuliah minggu 6 adalah : http://adf.ly/6ccis

Tentang pertemuan keenam

Menginjakan pada minggu keenam , masih dengan mata kuliah ALPRO dengan mengulas materi sebelumnya tentang Rekursif dalam Algoritma Pemrograman yaitu fungsi yang melakukan proses perulangan dengan cara memanggil dirinya sendiri.

Minggu keenam ini berbeda dengan lainnya,Perkuliahan seharusnya dilaksanakan pada hari Rabu tetapi dilaksanakan pada hari Jum’at dikarenakan hari Rabu diadakan Lomba Olimpiade sains Di UNIVERSITAS AHMAD DAHLAN dan pada hari Jum’at itu pula bertepatan dengan tanggal merah #harusnya libur malah masuk#nasib .
Bpk.Wahyu Pujiono menjelaskan tentang rekursif yaitu jangan menyamakan dengan Rumus matematika karena di REKURSIF menggunakan MEMORI dalam Pemrograman


HASIL BELAJAR




© 4 April 2012
===============================================================
source : http://tif.uad.ac.id/new_forum/index.php?topic=1238.msg10237#msg10237
copyright : http://tif.uad.ac.id/new_forum/index.php

Pertemuan Kelima Alpro


Bahan pertemuan kelima
Materi kuliah minggu 5 adalah : http://adf.ly/6ccis

Tentang pertemuan kelima
Kuliah pertemuan pada minggu kelima ini kami membahas tentang fungsi dan subprogram. Jujur dalam minggu kelima ini saya masih belum paham dengan fungsi atau subprogram. pada pertemuan ini kami sedikit diberi motivasi oleh dosen cukup membagun semangat saya dalam belajar semoga perkuliahan kedepan saya lebih paham lagi. sebelum perkuliahan selesai kami diberi tugas untuk mengunjungi restoran untuk melakukan observasi ke restoran untuk mengamati fungsi dari masing-masing pekerja di restoran itu.

HASIL BELAJAR




© 28 Maret 2012
===============================================================
source : http://tif.uad.ac.id/new_forum/index.php?topic=1238.msg10237#msg10237
copyright : http://tif.uad.ac.id/new_forum/index.php
 

Copyright © YunusBasuki® Design by YunusBasuki

HOME