Kamis, 05 April 2012

konversi blangan ke huruf


flowchart dan program kasus 3.4
#include <iostream>

Menghitung akar-akar persamaan kuadrat


flowchart dan program kasus 3.3 


#include <iostream>
#include <string>
#include <math.h>
using namespace std;

Mencari hasil pangkat bilangan real



flowchart ^_^

it's the program! ^_^
#include <iostream>
#include <string>

Alpro-pertemuan 4 (Mencari rata-rata dari n bilangan bulat positif)




flowchart..... ^_^


this's the program....
#include <iostream>
#include <string>

Alpro - Reflection (Meeting 4)



Thank God for-4 at this meetingI did not too much trouble ..
memndeklarasikan only in the for loopdo while and while still a littledifficulty in drawing flowchart.
this meeting we also have found a lot of troubleprobably because its level difficult?hehe:-XD
but I think today's fun ...

Senin, 02 April 2012

fibonacci use iterative

assalamu'alaikum warahmatullah..
Alhamdulillah,,This time I wanted to try today to discuss issues about the Fibonacci numbers .... based tutorials provided.Fibonacci numbers are the numbers that have the general form f1 = 0, f2 = 1, and f3 = f1 + f2 and f (n) = f ((n-2) + (n-1))

analysis of the problem :
 Fibonacci numbers are the numbers that have the general form 0 1 1 2 3 5 .... f(n) (with f(n) =  f ((n-2) + (n-1)))

so, The first step is initiate if f1 = 0, f2 = 1, and f3 = f1 + f2 and f (n) = f ((n-2) + (n-1))
 
flowchart !

Function - Alpro

hi friends,,, every article that I wrote like a story for me ...
This time I came back to tell the object instance that uses a variety of functions.
as usual my stories using raptors as well as C + + dev ... let's start the story!


Jumat, 30 Maret 2012

sekuen-Alpro

On this new label,,, I specialize to describe the issues contained in the textbook.
in each chapter, I take one issue, I identified the problem, and then create a flowchart outlining the program.
for the program I'm using dev c + + created by overloading.


Senin, 26 Maret 2012

Alpro - Function (Determine the Maximum Number)

assalamu'alaikum warahmatullah..

Reflection meetings to five algorithms and programming, 

Function is a part of the program is intended to do a certain task and located separately from the program
called him. Function is a key element in the C language because the language C itself is formed from a

Kamis, 22 Maret 2012

Alpro difficulties

assalamu'alaikum.....

For some cases I am still confused settlementsuch as Fibonaccinumbersthe declaration in the form of fractional numbers ....
I hope that my mentor could help me!

Minggu, 11 Maret 2012

Alpro - Pertemuan 3

Assalamu'alaikum,,,,
alhamdulillah pada pertemuan kali ini kami telah membahas bebrbagai kasus tentang pengkondisian....
berikut adalah hasil dari pembahasan kami, semoga bermanfaat!!



Flowchart dan program Kasus 3.1 (nilai max dari 2 bilangan)


#include <iostream>
#include <string>

using namespace std;
int main()
{
    float a,b;
    cout<<"bil.1 = ";
    cin>>a;
    cout<<"bil.2 = ";
    cin>>b;

Jumat, 09 Maret 2012

Alpro - latihan (individu)

  • flowchart dan program untuk mencari titik tengah garis A(x1,y1) dan B(x2,y2)



#include <iostream>
#include <string>

using namespace std;
int main()
{

Senin, 05 Maret 2012

Alpro - pertemuan ke-2

hari ini alpro lebih seru,,, 10 menit pertama kami membahas tugas yang diberikan  minggu lalun "membuat algoritma pengambilan uang dari ATM"..... Setelah itu kami dibagi dalam beberapa kelompok untuk mendiskusikan contoh kasus yang ada. mulai membuat algoritmanya dan selanjutnya bereksperimen dengan raptor, ada pelajaran baru yang kudapat dari temanku :
  

Selasa, 28 Februari 2012

Alpro - pertemuan ke-1

dag, dig, dug (deg-degkan)..... kesan pertamaku mengikuti mata kuliah alpro.. 07:40, aku sudah berada didepan ruang 311, tepat 20 menit sebelum perkuliahan dimulai. hmmm, benar saja kampus ternyata masih sepi, tak apalah yang penting g' telat (pikirku). cukup lama menunggu akhirnya akupun masuk

Minggu, 26 Februari 2012

DDP - Function


[sorcecode language="cpp"]
#include <cstdlib>
#include <iostream>

using namespace std;
int penjumlahan(int a, int b){

Sabtu, 25 Februari 2012

DDP - Class


#include <cstdlib>
#include <iostream>

using namespace std;
class Volume{
      public :
             Volume(){}
             ~Volume(){}
             void kotak(){

DDP - Structure


#include <cstdlib>
#include <iostream>

using namespace std;
struct mahasiswa{
       int nim;
       string nama;
       char kelas;
       char jk[10];
       float nilai;
       };