Perintah Output dalam bahasa C++ antara lain :
1. Printf ( )
yaitu printah output yang sering di gunakan
Tabel Penentu Format Printf ( )
1. Printf ( )
yaitu printah output yang sering di gunakan
Tabel Penentu Format Printf ( )
Contoh Program Printf ( )
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
void main() {
float a=3.25;
int x=1;
char y='A';
printf("IP Semester anda: %f \n",a);
printf("%c Termasuk huruf ke- %d",y,x);
getch();
}
2. Puts ( )
Hampir sama dengan fungsi printf, puts kepanjangan dari PUT STRING yang di kususkan untuk tipe data string.
Penggunaan Puts ( )
href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOgM4ozRk4i7NcZ29UT-ADjYo65bP-8xDwpASWmxKs0pc8VGUGNv6g6U2VLdmm7xNpZwoWeddismk727Rclmk3EMpqmfGAjUZVjUKMxyUPjpFxlrdpGh4lK22-l8xC_mVD_z5g6q0Am8my/s1600/3.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;">
3.Putchar ( )
Untuk menampilkan sebuah karakter kelayar dan tidak di akhiri pindah baris.
Contoh Program Putchar ( )
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
void main() {
putchar('A');
putchar('M');
putchar('I');
putchar('K');
putchar('O');
putchar('M');
getch();
}
4. Cout ( )
yaitu untuk menampilkan suatu data di layar.Jika digunakan file iostream.h harus di sertakan
Contoh Program Cout ( )
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
void main() {
cout << "Apa kabar....";
getch();
}
0 Komentar untuk "Perintah Output dalam Bahasa C++ Beserta Contoh Programnya"