Advertisement
Guest User

Hh

a guest
Mar 29th, 2020
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. using namespace std;
  4. int main()
  5. {
  6. char transformator [40];
  7. char ic [40];
  8. char kapasitor [40];
  9. char led[40];
  10. char relay[40];
  11. char saklar[40];
  12. char triac [40];
  13. char scr[40];
  14.  
  15. cout<<"____________________________________________________" <<endl;
  16. cout<<" "<<endl;
  17. cout<<"Inventory Laboratorium Tekhnik Elektronika Industri "<<endl;
  18. cout<<" "<<endl;
  19. cout<<"____________________________________________________"<<endl;
  20. cout<<"Item Jumlah Item "<<endl;
  21. cout<<"____________________________________________________"<<endl;
  22. cout<<"Transformator : ";cin>>transformator;
  23. cout<<"Intergrated Circuit(IC) : ";cin>>ic;
  24. cout<<"Kapasitor : ";cin>>kapasitor;
  25. cout<<"Light Emitting Diode(LED) : ";cin>>led;
  26. cout<<"Relay : ";cin>>relay;
  27. cout<<"Saklar : ";cin>>saklar;
  28. cout<<"Triac : ";cin>>triac;
  29. cout<<"SCR : ";cin>>scr;
  30. cout<<endl<<endl;
  31.  
  32. cout<<"\n==============================================\t" <<endl;
  33. cout<<"\n| DAFTAR INVENTORY LABORATORIUM |\t" <<endl;
  34. cout<<"\n| TEKHNIK ELEKTRONIKA INDUSTRI |\t" <<endl;
  35. cout<<"\n| SMK TELADAN BATAM |\t" <<endl;
  36. cout<<"\n|____________________________________________|\t" <<endl;
  37. cout<<"\n|Item Jumlah Item |"<<endl;
  38. cout<<"\n|Transformator :"<<transformator<<" unit |\t" <<endl;
  39. cout<<"\n|Intergrated Circuit (IC) :"<<ic<< " unit |\t" <<endl;
  40. cout<<"\n|Kapasitor :"<<kapasitor<< " unit |\t" <<endl;
  41. cout<<"\n|Light Emitting Diode (LED) :"<<led<< " unit |\t" <<endl;
  42. cout<<"\n|Relay :"<<relay<< " unit |\t" <<endl;
  43. cout<<"\n|Saklar :"<<saklar<< " unit |\t" <<endl;
  44. cout<<"\n|Triac :"<<triac<< " unit |\t" <<endl;
  45. cout<<"\n|SCR :"<<scr<< " unit |\t" <<endl;
  46. cout<<"\n|____________________________________________|\t" <<endl;
  47. cout<<"\n DiMohon Agar Menjaga Kebersihan Laboratorium\t" <<endl;
  48. cout<<"\nDilarang Menggunakan Peralatan Tanpa Izin Kaprodik\t" <<endl;
  49. cout<<"\n "<<endl;
  50. cout<<"\n -SMK BISA!- \t"<<endl;
  51. cout<<"\n�HENDRIK2020 \t"<<endl;
  52. getch();
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement