• RSS
  • Delicious
  • Digg
  • Facebook
  • Twitter
  • Linkedin
  • Heading 1 Here:Enter the heading 1 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • Heading 2 Here:Enter the heading 2 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • Heading 3 Here:Enter the heading 3 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • Heading 4 Here:Enter the heading 4 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • Heading 5 Here:Enter the heading 5 description here.Go to blogger edit html,find these words and replace it with your own description ...
  • SLIDE-1-TITLE-HERE

    Welcome to Blogger.Go to Blogger edit html and find these sentences.Now replace these text/sentences with your own descriptions.This theme is convert to Blogger by Premiumbloggertemplates.com.Download this template and more Premium Blogger Templates From PremiumBloggerTemplates.com...

  • SLIDE-2-TITLE-HERE

    Welcome to Blogger.Go to Blogger edit html and find these sentences.Now replace these text/sentences with your own descriptions.This theme is convert to Blogger by Premiumbloggertemplates.com.Download this template and more Premium Blogger Templates From PremiumBloggerTemplates.com...

  • SLIDE-3-TITLE-HERE

    Welcome to Blogger.Go to Blogger edit html and find these sentences.Now replace these text/sentences with your own descriptions.This theme is convert to Blogger by Premiumbloggertemplates.com.Download this template and more Premium Blogger Templates From PremiumBloggerTemplates.com...

  • SLIDE-4-TITLE-HERE

    Welcome to Blogger.Go to Blogger edit html and find these sentences.Now replace these text/sentences with your own descriptions.This theme is convert to Blogger by Premiumbloggertemplates.com.Download this template and more Premium Blogger Templates From PremiumBloggerTemplates.com...

Rabu, 30 Maret 2011

Tugas algoritma dan pemrograman

Posted by Cipto Tri Raharjo On 07.24

contoh source code c++ program sederhana menentukan bilangan genap atau ganjil..


hasil setelah di run


Contoh source code c++ program sederhana mencari sisi segitiga yang benar




hasil setelah di run



Sabtu, 26 Maret 2011

Program mencari Nilai rata-rata

Posted by Cipto Tri Raharjo On 00.53

#include <iostream.h>
#include <conio.h>
void main()
{
float n, total, rata2;
total = 0;
for(int i=0; i<10; i++);
{
cout<<”Masukkan nilai ke “<<(i+1)<>n;
total = total + n;
}
rata2 = total / 10;
cout<<”Total = “<<total<<endl;
cout<<”Rata2 = “<<rata2<<endl;
getch();
return 0;
}

Selasa, 15 Maret 2011

tugas alpro

Posted by Cipto Tri Raharjo On 02.01

Hasil diskusi
Nama Anggota:
1.Cipto Tri Raharjo : http//ciptostudent.blogspot.com
2.Fakhrurrozi : http//fakhrur91.wordpress.com
3.Wahyu Setiawan : http//ilmuygdicari.wordpress.com
Algoritma mengambil uang di BANK (melalui teller):
1.Masuk ke kantor cabang BNI.
2.Mengambil nomor antrian.
3.Memasukkan nomor rekening.
4.Masukkan saldo terakhir.
5.Memasukkan nominal uang yang akan diambil oleh pemilik rekening (otomatis akan tercetak dalam kolom debet).
6.Mencetak data ke buku tabungan.

Algoritma Mengambil_Uang_di _BANK

A =  Masuk ke kantor cabang BNI. 
B = Mengambil nomor antrian.
C =  Memasukkan nomor rekening.
D = Masukkan saldo terakhir.
E = Memasukkan nominal uang.
F = Mencetak data ke buku tabungan.
Deklarasi:
A , B , C, D, E : integer                             (input) 
F               : integer                             (output)
Deskripsi:
read (A, B, C, D, E ) 
F  <— D – E
write (F)

Algoritma mengambil uang di bank (as a client):
1)Mengambil nomor antre.
2)Mengambil formulir di bank.
3)Mengisi formulir tersebut.
a.Mengisi nama.
b.Mengisi tanggal transaksi.
c.Mencentang jenis tabungan yang dimiliki.
d.Mengisi nomor rekening.
e.Mengisi kantor cabang tempat mengambil tabungan.
f.Mengisi nominal uang yang diinginkan contoh sebesar Rp. 2.000.000,- dengan huruf: “Dua juta rupiah”.
g.Menandatangani formulir.
4) Menyerahkan formulir yang telah diisi kepada teller.
5) Menerima uang beserta buku tabungan yang sudah terisi data transaksi terbaru.