Local fruit Indonesia
Indonesia Various local fruit is fruit that has a delicious flavor. This fruit is a type of tropical fruit. It turns out a variety of local fruit is delicious to eat but has many benefits even for health. Here are some of them.
Sapodilla
Brown is one common type of skin color is given for those who have slightly darker...
Wednesday, 25 April 2012
Friendly With Fat
Fat
Hearing the word fat, one's mind is usually thought of in the fat body or illness. Things like this are not entirely true, because the fat is still needed by the body. Fat still have benefits for the body, especially for children and active in its infancy, is also needed in the formation of fat cells and helps to menadi cells flexible so it can...
Labels:
Health
Diet tricks Success Without Tortured
Healthy Diet
By following the practical steps, you can run the program your diet without feeling tortured.What are the tricks that a healthy diet does not make you miserable?
Drinking Water
Drinking water can reduce feelings of hunger, you can try drinking a glass of water before a tempting desire for snacking. Hunger can be reduced with the...
Labels:
Health
Brief of Asthma
Asthma is a symptom caused by airway abnormalities in the form of increased sensitivity to stimulation from the environment as a trigger.
Triggers of these symptoms can be fatigue of mind (emotional distress), physical fatigue, changes in living environment that is not expected (weather, humidity, temperature, smoke (especially tobacco) and the odors...
Labels:
Health
Sunday, 22 April 2012
Install Windows 7 With Falshdisk

How To Install Windows 7 with a stick.
Maybe my friend is no stranger to listen to the words of people about How To Install Windows 7 with a stick. But my friend does not know how or maybe my friend does not want to know, which is important atai laptop netbook OS already installed his friend. Need friend know, science is very expensive you know, it emang bener. Well, of course, especially for my friend who has a netbook or laptop, it's good...
Labels:
computer
Friday, 20 April 2012
BIOS Beep Code and How to Solve Problems
BIOS stands for Basic Input output, the system is designed for the first time once run by the PC is turned on. Initial function of the BIOS is to identify, test, and initialize the hardware installed on the PC such as VGA Card, CD / DVD ROM, hard disk, memory and other hardware on the computer. When the computer is turned on, the computer will play a single beep (in some computer with the type of BIOS may beep twice) and continue with the normal...
Labels:
computer
Tuesday, 17 April 2012
algorithms and programming
The algorithm is a sequence of logical steps solving the problems systematically and logically arranged. " Logical word is the key word in the algorithm. The steps in the algorithm must be logical and must be determined is false or true. In some contexts, the algorithm is the specification of the sequence of steps to perform a specific job. Consideration...
Labels:
algorithm
RECORD/STRUCT
Dalam bahasa pemrograman C++,record disebut dengan struktur.Struktur bermanfaat untuk mengelompokkan sejumlah data dengan tipe yang berlainan.Sebagai contoh perhatikan berikut ini:
struct data_tanggal
{
};
int tahun;
int buan;
int tanggal;
Struktur diatas bernama data_tanggal,yang tersusun atas 3 unit penyusunnya yaitu tahun,tanggal,dan bulan.Setelah...
Labels:
algorithm,
program c++
[C + +] Function Declarations and References in C + + Programming
Pengantar Fungsi
Sejumlah fungsi berisi sejumlah pernyataan yang dikemas dalam sebuah nama.
Tujuan pembuatan fungsi:
Memudahkan dalam mengembangkan program.
Menghemat ukuran program.
Fungsi merupakan kunci dalam pembuatan pemrograman terstruktur.
Fungsi dapat dipanggil beberapa kali di beberapa tempat dalam program.
Deklarasi Fungsi (Prototipe Fungsi)
Bentuk:
nilai_balik...
Labels:
algorithm,
program c++
Iteration
1.Perulangan FOR
Statement FOR digunakan untuk menyatakan perulangan(seperti pascal).
sintaksnya:
for (ungkapan1; ungkapan2; ungakapan3)
{
.
.
}
-Ungkapan 1 merupakan statement awal (inisialisasi)
-Ungkapan 2 merupakan kondisi/syarat perulangan dilakukan
-Ungkapan 3 merupakan statement control untuk perulangan
2.Perulangan WHILE
Statement WHILE juga...
Labels:
algorithm,
program c++
examples of repetition program
Program sederhana penjumlahan dan pengurangan diulang kembali,
#include <iostream.h>
#include <conio.h>
int main()
{
int a,b,x;
char n;
eroel:
cout<<"masikkan nilai a = ";
cin>>a;
cout<<"masukkan nilai b = ";
cin>>b;
x=a+b;
cout<<"hasil penjumlahan = "<<x<<endl;
x=a-b;
cout<<"hasil pengurangan...
Labels:
algorithm,
program c++
program with the word flip-recursive iterative looping
#include <iostream.h>
#include <conio.h>
class Balik{
friend istream& operator>>(istream&, Balik&);
friend ostream& operator<<(ostream&, Balik&);
public:
void balik_kata();
void balik(int s);
private:
char kata[50];
int n;
};
void Balik::balik_kata(){ //interatif
cout<<"Masukkan Kata : ";
cin>>kata;n=strlen(kata);
cout<<"Hasil...
Labels:
algorithm,
program c++
Determining Program Square / Rectangle In Class
#include <iostream>
#include <string>
using namespace std;
class bangun {
friend istream& operator>>(istream&, bangun&);
public:
void menentukan();
private:
int a,b;
};
istream& operator>>(istream& in, bangun& masukan){
cout<<"Masukan a = ";
in>>masukan.a;
cout<<"Masukan b = ";
in>>masukan.b;
}
void...
Labels:
algorithm,
program c++
leap year program using the function method
#include <cstdlib>
#include <iostream>
using namespace std;
void proses(int tahun){
char *hasil;
if(tahun%4==0){
hasil = "Tahun Kabisat";
}else hasil = "Bukan Tahun Kabisat";
cout << "Tahun " << tahun << " adalah " << hasil << endl;
}
int main(int argc, char *argv[])
{
int tahun;
cout << "Menentukan...
Labels:
algorithm,
program c++
[C + +] The loop statement in C + + Programming
Pernyataan Perulangan
Pernyataan perulangan adalah suatu pernyataan program yang akan melakukan sesuatu instruksi selama suatu kondisi yang disyaratkan terpenuhi/ bernilai benar.
Berbeda dengan pernyataan berkondisi, pernyataan perulangan melakukan eksekusi instruksi berkali-kali, selama kondisi tersebut terpenuhi.
Pernyataan-pernyataan perulangan:
Pernyataan...
Labels:
algorithm,
program c++
Recursive Rank Value In calculating the Raptor

Here is a picture RAPTOR program that serves to calculate the value of x ^ y with real numbers x and y are integers recursively...
Calculating the Fibonacci sequence with the C + + and Raptor

Fibonacci number is the line number obtained by summing the number of the previous sequence. With the notation mathematics, can be described as follows:
Sebagai contoh, 10 bilangan Fibonacci pertama adalah:
0 1 1 2 3 5 8 13 21 34
Ilustrasi:
0 -> Bilangan Fibonacci ke-1
1 -> Bilangan Fibonacci ke-2
0 + 1 = 1 -> Bilangan Fibonacci ke-3
1 + 1 = 2 -> Bilangan Fibonacci ke-4
1 + 2 = 3 -> Bilangan Fibonacci ke-5
2 + 3 = 5 -> Bilangan...
Labels:
algorithm,
program c++
Friend Function Program Using C + +
STEP 1: Start the program.
STEP 2: Create the class name as a data base with members and member functions.
STEP 3: The function get () is used to read input from the user 2.
STEP 4: Declare friend functions mean (base ob) in the classroom .
STEP 5: On the outside of the class to define the function of your friends and do the following.
STEP...
Labels:
algorithm,
program c++
Copies Creator Program Using C + +
#include <cstdlib>
#include <iostream>
#include <conio.h>
class copy
{
int var,fact;
public:
copy(int temp)
{
...
Labels:
algorithm,
program c++
Program summation operator overloading in C + +
The following is an example of operator overloading added program in C + +.
#include"iostream.h"
#include"conio.h"
class Buah
{
private:
int apel;
int jeruk;
public:
Buah(int jum_apel=0,int jum_jeruk=0);
void info_buah();
Buah operator+(Buah b2);
Buah operator+(int tambahan);
};
void main()
{
clrscr();
Buah buah1 (20,5);
Buah buah2;
cout<<"Obyek...
Labels:
algorithm,
program c++
C + + program to display build
#include <iostream>
#include <string>
using namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
int k;
int p;
int l;
raptor_prompt_variable_zzyz ="masukan panjang";
cout << raptor_prompt_variable_zzyz << endl;
cin >>...
Labels:
algorithm,
program c++
C + + program to find the average value
#include <iostream>
using namespace std;
int main()
{
int n,i,nilai,tt_nilai=0;
float rata2;
cout <<"Masukkan banyak data : " ;
cin >>n;
for (i=1 ; i<=n ; i++)
{
cout <<"Masukkan Data Nilai : " <<i << " " ;
cin >> nilai;
tt_nilai = tt_nilai + nilai;
}
rata2 = tt_nilai/n ;
cout <<"Nilai rata-rata...
Labels:
algorithm,
program c++
The program calculates the rank of the C + +
#include <iostream>
#include <string>
using namespace std;
class pangkat{
friend ostream& operator<<(ostream&, pangkat&);
friend istream& operator>>(istream&, pangkat&);
public:
pangkat(){};
void hasil();
private:
float x,c;
inty,i;
};
istream& operator>>(istream&mlebu,pangkat&ketik){
cout<<"MasukkanAngka=...
Labels:
algorithm,
program c++
Subjects reflection Alpro Seventh Meeting
In a meeting yesterday on the first day we went on a recursive and interatif material, that is where the problem is still not quite understand about the recursive, now that we abis each group were given a challenge to do something everyday that contain elements of ARRAY, all the teams that already yesterday on the successful work and ngepostingnya,...
Labels:
algorithm
Monday, 16 April 2012
How it Works CPU
Central Processing Unit (CPU): the brain is in a PC that processes the data and determining the strength and unit price of a computer. Within a year back, the CPU speed has increased dramatically from 600 MHz to 1 GHz, and Intel recently announced has been shipping Pentium III 1.13 GHz. At the end of the year is expected to speed on the 1.5 GHz will...
Labels:
algorithm
Computer Dictionary
APPLICATION: software used to perform specific tasks, such as performing calculations accounting, word processing (writing letters, agreements, etc..), Or drawing (graphic nature of work).
ASCII: American Standard Code for Information Interchange. Standard code used to represent text in computers dalri or to exchange text between computers one with...
Labels:
computer
All About Hardisk
1. How a Hard Drive
Hard Drive: a storage device (storage) that record data quickly into magnetic pulses on a platter / disk rotating metal. When a CPU is the brains of a PC, then the hard drive serves as the heart, pumping the data vital to the entire system. As a component that drives the virtual computer, hard drive is also a mystery. Most people...
Labels:
computer
All About Computer Viruses
1. Method Works Computer Virus
A computer virus: A computer code which is able to "reproduce itself" that put part or all of the code in the file or application, and result in your computer do things that do not want.computer viruses is a common disease in the world modern technology. They can spread rapidly through the open computer networks like...
Labels:
computer
Subscribe to:
Posts (Atom)
.
.
.
.