Latihan Slide 3 - Sem 1
Posted In
12.1C.07,
BSI,
Logika dan Algoritma,
Semester I
- 4/16/2012 - 0
comments
/*Luas Segitiga With cout&cin*/
/*By : 12120421*/
#include<conio.h>
#include<iostream.h>
main()
{
float alas,tinggi,luas;
cout<<"Menghitung Luas Segitiga by 12120421"<<endl;
cout<<"==============================="<<endl;
cout<<"Masukkan Nilai Alas : "; cin>>alas;
cout<<"Masukkan Nilai Tinggi : "; cin>>tinggi;
luas = 0.5*alas*tinggi;
cout<<"==============================="<<endl;
cout<<"Luas Segitiga Adalah: " <<luas<<endl;
getch();
}
/*Luas Persegi Panjang With printf&scanf*/
/*By : 12120421*/
#include<conio.h>
#include<stdio.h>
main()
{
float panjang,lebar,luas;
printf("Menghitung Luas Persegi Panjang by 12120421");
printf("\n===========================================");
printf("\nMasukkan Nilai Panjang : "); scanf("%f",&panjang);
printf("\nMasukkan Nilai Lebar : "); scanf("%f",&lebar);
luas = panjang*lebar;
printf("\n===========================================");
printf("\nLuas Persegi Panjang Adalah : %6.2f",luas);
getch();
}
/*Luas Bujur sangkar With cout, cin, printf and scanf*/
/*By : 12120421*/
#include<conio.h>
#include<stdio.h>
#include<iostream.h>
#include<math.h>
main()
{
float sisi,luas;
printf("Menghitung Luas Bujur Sangkar by 12120421");
printf("\n===========================================");
cout<<"\nMasukkan Nilai Sisi : "; cin>>sisi;
luas = pow(sisi,2);
printf("\n===========================================");
cout<<"\nLuas Bujur Sangkar Adalah : "<<luas<<endl;
getch();
}
Latihan Soal PTIK Pert 5 Quiz
Posted In
12.1C.07,
BSI,
PTIK,
Quiz,
Semester I
- 4/15/2012 - 0
comments
Question 1
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Kode yang digunakan mulai pada generasi ketiga adalah…
Select one:
Feedback
The correct answer is:EBCDIC.
Question 2
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Kode yang terdiri atas 16 kombinasi adalah…
Select one:
Feedback
The correct answer is:BCD.
Question 3
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Kodekan 75 dengan menggunakan BCD…
Select one:
Feedback
The correct answer is:0111 0101.
Question 4
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Kombinasi lubang pada punch card, adalah contoh kode…
Select one:
Feedback
The correct answer is:Kode Hollerith.
Question 5
Correct
Mark 1.00 out of 1.00
Flag question
Question text
Kode yang bertujuan untuk membuat kode biner standar yang
dikembangkan oleh ANSI (Amerika Nasional Standard Information), adalah…
Select one:
p
Feedback
The correct answer is:
ASCII
Subscribe to:
Posts (Atom)