Minggu, 16 Desember 2012

Tugas Quiz C++





//Fadril C++
#include <iostream.h>
#include <math.h>

void Panjang(int x_1, int x_2, int y_1, int y_2)
{
float hasil;
if(x_2==x_1)
{
hasil = abs (y_2 - y_1);
}
else if (y_2==y_1)
{
hasil= abs (x_2-x_1);
}
else
{
hasil=sqrt((x_2-x_1)*(x_2-x_1) + (y_2-y_1)*(y_2-y_1));
}
cout<<"hasil = "<<hasil;
}


int main()
{
int a, b, c, d;

cout<<"Masukkan Nilai X1 : ";
cin>>a;
cout<<"Masukkan Nilai X2 : ";
cin>>b;
cout<<"Masukkan Nilai Y1 : ";
cin>>c;
cout<<"Masukkan Nilai Y2 : ";
cin>>d;

Panjang(a,b,c,d);



return 0;

}
 
klik gamar untuk memperbesar

Minggu, 02 Desember 2012

TUGAS PROGRAM VISUAL BASIC Menampilkan Daftar Menu Makanan










 Private Sub Command1_Click()
Adodc1.Recordset.AddNew
Adodc1.Recordset!jenis_makanan = tjenis.Text
Adodc1.Recordset!nama_masakan = tnama.Text
Adodc1.Recordset!bahan = tbahan.Text
Adodc1.Recordset!cara_memasak = tcara.Text
Adodc1.Recordset.Update
MsgBox " Data anda telah Di simpan ..!!"
End Sub

Private Sub Command2_Click()
Unload Me
End Sub

Private Sub Command3_Click()
Form2.Show
End Sub

Private Sub Form_Load()
Adodc1.RecordSource = "Select * From resep"
Adodc1.Refresh
End Sub

Private Sub Label1_Click()

End Sub

Private Sub tbahan_Change()

End Sub

Private Sub tcara_Change()

End Sub

Private Sub tjenis_Change()

End Sub








Private Sub bttampil_Click()
Adodc1.RecordSource = "Select * From Resep where jenis_makanan='" & tjenis.Text & "'"
Adodc1.Refresh
While Not Adodc1.Recordset.EOF
fg1.Row = baris
fg1.Col = 0
fg1.Text = baris
fg1.Col = 1
fg1.Text = Adodc1.Recordset!nama_masakan
Adodc1.Recordset.MoveNext
baris = baris + 1
Wend
End Sub




Private Sub Command1_Click()
Form3.Show
End Sub

Private Sub Form_Load()
fg1.Row = 0
fg1.Col = 0
fg1.Text = "No"
fg1.Col = 1
fg1.Text = "Bahan"

fg1.ColWidth(0) = 500
fg1.ColWidth(1) = 2500
End Sub

Kamis, 29 November 2012

fungsi





Ini adalah program C++ tentang fungsi



Coding :
#include "stdafx.h"
#include <iostream.h>


int main(int argc, char* argv[])
{
int x, y,awal;
char pil;
char jwb;

cout <<"1.Perkalian" << endl;
cout <<"2.Penjumlahan" << endl;
cout <<"3.Pembagian" << endl;
cout <<"4.Pengurangan" << endl;
cout <<"Pilihan Anda" << endl;
cin>>pil;
cout <<endl;

switch (pil)
{
case '1' : cout <<"Anda memilih menu Perkalian"<<endl;
cout << "masukan nilai ke 1"<<endl;
cin >> x;
cout << "Masukan nilai ke 2"<<endl;
cin >>y;
cout << "Hasi Perkalian = ";
cout << x * y <<endl;
break;
case '2' : cout <<"Anda memilih menu Penjumlahan"<<endl;
cout << "masukan nilai ke 1"<<endl;
cin >> x;
cout << "Masukan nilai ke 2"<<endl;
cin >>y;
cout << "Hasil Penjumblahan = ";
cout << x + y <<endl;
break;
case '3' : cout <<"Anda memilih menu Pembagian"<<endl;
cout << "masukan nilai ke 1"<<endl;
cin >> x;
cout << "Masukan nilai ke 2"<<endl;
cin >>y;
cout << "Hasil Pembagian = ";
cout << x / y <<endl;
break;
case '4' : cout <<"Anda memilih menu Pengurangan"<<endl;
cout << "masukan nilai ke 1"<<endl;
cin >> x;
cout << "Masukan nilai ke 2"<<endl;
cin >>y;
cout << "Hasil Pengurangan = ";
cout << x - y <<endl;
break;
}

{
cout << "Apakah penghitungan mau dilanjutkan(Y/T) \n";
cin >> jwb;
if (jwb=='y') {

return 0;
}
}


}

Kamis, 22 November 2012

Fungsi C++


(English Version) 

Fungsi input output Dan PADA bahasa C + +

Prototype of the functions that are used to display the results of a process contained in the header filestdio.h and conio.h. Library functions that are commonly used to display the results of the prototype are in the header file stdio.h is putchar (), puts (), printf (). Library functions is its standard, which almost all C compilers provide these library functions.
FUNCTION printf ()
Function printf () is used to display the data, either numeric or text type, either constant or variable.
The general form of the function printf () are:
printf ("string control", argumen1, argumen2, ...);
control string consists of:
a. Code Format
Format code used to indicate the format of the variables, constants, or expressions are shown. The code format is closely related to the type of data to be displayed. Especially for the value of the string, display results using the function printf () can be done without using code format.
CODE FORMAT
USE
% C
Displays the value of the character data
% S
Displays the value of the string
% D or% i
Displaying integer values
% U
Displaying unsigned integer data values
% Ld
Featuring long integer data values
% Lu
Displays data values ​​unsigned long integer
% F
Displays data values ​​floating point (decimal)
% E
Displays the value of floating point data (exponential form)
% G
As a substitute% f or% e depending on the shortest
% Lf
Displaying double precision data values
% X
Displays hexadecimal integer value
% O
Displaying octal integer values
% P
Displays a memory address to pointer

b. String Literal
Literal string is a constant string that has a fixed shape and are displayed in accordance with what is written.

c. Escape Character
Escape character is a well-written character constant preceded by a slash and has its own meaning.
argument consists of:
a. variable
b. constants
c. expression
Example:
printf ("% c is an alphabet to% d ',' b ', 2);
printf ("Number of the two numbers is:% d", + bil1 bil2);

FUNCTION puts ()
The function puts () is used specifically for the data string to the screen. The nature of this function is automatically displayed string ends with \ n (line feed)
Example:
# Include <stdio.h>
main ()
{
puts ("UNIROW");
puts ("University PGRI Ronggolawe Tuban");
}
The output of the above program is:
UNIROW
University PGRI Ronggolawe Tuban

FUNCTION putchar ()
The function putchar () is used specifically for a character to the screen. Appearance of the characters do not end with the line movement.
Example:
putchar ('A');
produce the same output with
printf ("% c", 'A');

Ø   Output function.
Functions that use file stdio.h title:
putchar (): display the unformatted character.
puts (): display the unformatted string.
printf (): displays results based on the code format.
fprintf (): display the results on the printer.

Functions that use file conio.h title:
clrscr (): clears the screen.
gotoxy (): put the cursor on a particular screen position.

Ø   Input function.
Functions that use file stdio.h title:
gets (): insert a string value.
scanf (): use the code input format.

Functions that use file conio.h title:
getch (): input 1 character without Enter and not displayed.
getchar (): input one character ending with Enter.
getche (): input 1 character without Enter but displayed.

Sample Program.
Example 1: (C language)
# Include <stdio.h>
# Include <conio.h>
main ()
{Int number;
clrscr ();
printf ("Number:");
scanf ("% d", & number);
printf ("\ jackfruit entered is% d", number);
getch ();}
Output:
Numbers: 15
Number entered is 15

Example 2:
(C language)
# Include <stdio.h>
# Include <conio.h>
main ()
{Char name [15];
clrscr ();
printf ("Enter name:");
gets (name);
printf ("\ nHallo,% s!", name);
getch ();}
                                                                            
Output:
Enter a name: Hand Excel.
Hallo, Hand Excel. !!!

(Versi Indonesia) 

Fungsi input output Dan PADA bahasa C + +

Prototype Bahasa Dari fungsi-fungsi Yang digunakan untuk menampilkan REVENUES bahasa Dari suatu proses imunisasi meliputi terdapat file header stdio.h Illustrasi Dan conio.h. Fungsi-fungsi pustaka Yang UMUM digunakan untuk menampilkan REVENUES Yang prototypenya terdapat di file header stdio.h adalah putchar (), puts (), printf (). Fungsi-fungsi pustaka inisial sifatnya standar, yaitu hampir * Semua kompiler C menyediakan fungsi-fungsi pustaka inisial.
FUNGSI printf ()
Fungsi printf () digunakan untuk menampilkan data, BAIK Yang bertipe numerik atau TEKS, BAIK konstanta ataupun variabel.
Bentuk UMUM Bahasa Dari printf fungsi () adalah:
printf ("string terangkan", argumen1, argumen2, ...);
String terangkan terdiri Bahasa Dari:
a. Kode Format
Kode Format digunakan untuk menunjukkan Format Bahasa Dari variabel, konstanta, atau ungkapan Yang Akan ditampilkan. Kode Format inisial berkaitan ERat Artikel Baru tipe Data Yang Akan ditampilkan.KHUSUS untuk Diskonto string, tampilan REVENUES Artikel Baru menggunakan fungsi printf () dapat dilakukan Tanpa menggunakan Kode format.
Kode FORMAT
KEGUNAAN
% C
Menampilkan Diskonto Data Karakter
% S
Menampilkan Diskonto String
% D atau% i
Menampilkan Diskonto data integer
% U
Menampilkan Diskonto data integer Tak bertanda
% Ld
Menampilkan Diskonto data integer panjang
% Lu
Menampilkan Diskonto Data integer panjang Tak bertanda
% F
Menampilkan Diskonto Data floating point (bentuk desimal)
% E
Menampilkan Diskonto Data floating point (bentuk eksponen)
% G
Sebagai pengganti% f atau% e Tergantung Yang terpendek
Jika%
Menampilkan Diskonto Data presisi ganda
% X
Menampilkan Diskonto hexadesimal bilangan bulat
% O
Menampilkan Diskonto oktal bilangan bulat
% P
Menampilkan suatu alamat Memori untuk pointer

b. Literal String
Literal String adalah suatu konstanta string yang mempunyai bentuk Yang Yang Tetap Dan Akan ditampilkan Sesuai Artikel Baru APA Yang ditulis.

c. Melarikan diri Karakter
Melarikan diri karakter merupakan suatu konstanta Karakter Yang ditulis Artikel Baru diawali oleh Garis miring Dan mempunyai arti tersendiri.
argumen terdiri Bahasa Dari:
a. variabel
b. konstanta
c. ungkapan
Contoh:
printf ("% c merupakan Abjad Yang Ke% d", 'b', 2);
printf ("JUMLAH kedua bilangan adalah:% d", bil1 + bil2);

FUNGSI menempatkan ()
Fungsi puts () digunakan untuk menampilkan KHUSUS data string Ke Layar. Sifat fungsi inisial adalah String Yang ditampilkan secara MAMPUS Artikel Baru Akan diakhiri \ n (pindah Baris)
Contoh:
# Include
main ()
{
puts ("UNIROW");
puts ("Universitas PGRI Ronggolawe Tuban");
}
Output Bahasa Dari Program di Atas adalah:
UNIROW
Universitas PGRI Ronggolawe Tuban

FUNGSI putchar ()
Fungsi putchar () digunakan untuk menampilkan sebuah KHUSUS Karakter Ke Layar. Penampilan Karakter tidak diakhiri Artikel Baru perpindahan Baris.
Contoh:
putchar ('A');
menghasilkan output yang sama Yang Artikel Baru
printf ("% c", 'A');

Ø   Fungsi Output.
Fungsi Yang menggunakan berkas judul stdio.h:
putchar (): menampilkan Karakter tidak terformat.
puts (): menampilkan String tidak terformat.
printf (): menampilkan REVENUES berdasarkan Kode format.
fprintf (): menampilkan REVENUES di printer.

Fungsi Yang menggunakan berkas judul conio.h:
clrscr (): membersihkan Layar.
gotoxy (): meletakkan kursor di posisi Layar tertentu.

Ø   Fungsi input.
Fungsi Yang menggunakan berkas judul stdio.h:
mendapat (): memasukkan String Diskonto.
scanf (): masukan menggunakan Kode format.

Fungsi Yang menggunakan berkas judul conio.h:
getch (): input 1 Karakter Tanpa Enter Dan tidak ditampilkan.
getchar (): input 1 Karakter diakhiri Artikel Baru Enter.
getche (): input 1 Karakter Tanpa Enter TAPI ditampilkan.

Contoh Program.
Contoh 1: (Bahasa C)
# Include <stdio.h>
# Include <conio.h>
main ()
{Int Angka;
clrscr ();
printf ("Angka:");
scanf ("% d", & Angka);
printf ("\ Nangka Yang dimasukkan adalah% d", Angka);
getch ();}
Output:
Angka: 15
Angka Yang dimasukkan adalah 15

Contoh 2:
(Bahasa C)
# Include <stdio.h>
# Include <conio.h>
main ()
{Char NAMA [15];
clrscr ();
printf ("Masukkan NAMA:");
mendapat (nama);
printf ("\ nHallo, s%!", nama);
getch ();}
                                                                            
Output:
Masukkan NAMA: Tangan Excel.
Hallo, Tangan Excel. !