Jumat, 21 Oktober 2016

My Profile

 About Me....
My name is Dita Widyastuti, my nick name Dita. I was born in Pekalongan, 22th December 1997. 
I am a female.
I am a moslem. My type blood B.
I live in Bulakpelem village Rt/Rw 02/08, Sragi, Pekalongan, Jawa Tengah.
I have a sister and brother. I come from SMA 1 Sragi, and in there I majored in natural science, and now i study in AKN Kajen.   
 

My hobby watching televition and reading.

And My dream is I hope i can become a success person and I can make my parents happy with my success.

Why I Chose Study Program RPL?

The reasons Why I chose English :

Because in study program RPL I want increase my knowledge about RPL. And registration time in AKN Kajen I chose two study program. First I chose Technical information and second I chose Technical chemical. And I accepted in study program RPL so I have to focus study in RPL.

The Importance of Using English in digital era

Why using English in Digital Era Importance?
In this Digital Era, I think using english very importance because english is an international language, often used for communicate people in the world. Then with can speak english in this era we can communicate with people from around the world. And in computer, internet, smartphone many uses english. So english is importance.

Minggu, 09 Oktober 2016

Dev C++ : Menghitung Luas Persegi, Luas Jajar Genjang, dan Luas Segitiga

1. Program C++ untuk Menghitung Luas Persegi
#include <iostream>
using namespace std;
int main()
{
 int s;
int hasil;
cout<<" Program untuk Menghitung Luas Persegi \n";
cout<<" Masukkan panjang sisinya : "; cin>>s;
hasil = s * s;
cout<<" Jadi Luas Perseginya adalah :"; cout<<hasil;
return 0;
}

Berikut hasil gambar codingnya :












Gambar outputnya :











2. Program C++ untuk Menghitung Luas Jajar Genjang
#include <iostream>
using namespace std;
int main()
{
int a,t;
int hasil;
cout<<" Program untuk Menghitung Luas Jajar Genjang\n ";
cout<<" Masukkan nilai alasnya : "; cin>>a;
cout<<" Masukkan Nilai tingginya : "; cin>>t;

hasil = a * t;
cout<<" Jadi Luas Jajar Genjangnya adalah : "; cout<<hasil;
return 0;
}

Gambar codingnya :












Gambar outputnya :













3. Program C++ untuk Menghitung Luas Segitiga
#include <iostream>
using namespace std;
int main()
{
int a,t;
int hasil;
cout<<" Program untuk Menghitung Luas Segitiga\n";
cout<<" Masukkan nilai alas : "; cin>>a;
cout<<" Masukkan nilai tinggi : "; cin>>t;
 hasil = 0,5 * a * t;
cout<<" Jadi Luas Segitiganya adalah : "; cout<<hasil;
return 0;
}

Gambar codingnya :












Gambar outputnya :












Sekian, dan semoga bermanfaat....