This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
class Nasabah{ | |
private : int saldo; | |
public: | |
Nasabah(){ | |
saldo = 1500000; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oiya, untuk yang istilah-istilah kalo bisa cari penjeljasannya ya. soalnya di presentasinya aku cuma naruh point-pointnya aja. | |
WHAT IS DSS | |
DSS Adalah software interaktif yang berbasis komputer dan diperuntukkan membantu orang dalam menyusun informasi penting dari data mentah, dokumen, pengetahuan personal, dan atau model bisnis. | |
DSS adalah sistem yang berbasis software interaktif yang di tujukan untuk membantu majaer dalam membuat atau menentukan suatu keputusan terhadap sesuatu dengan cara memanfaatkan informasi dalam skala besar yang dihasilkan dari berbagai sistem informasi yang saling berkaitan dalam suatu organisasi seperti : AIS, MIS, OA, dsb. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
class Shape{ //base class || class abstract | |
protected: | |
int width; | |
int heigh; | |
public: | |
Shape(int heigh, int width){ //constructor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266_Lib.h> | |
#include <BlynkSimpleShieldEsp8266.h> | |
#include <Servo.h> | |
#include <SoftwareSerial.h> | |
#define BLYNK_PRINT Serial | |
#define trigAtas 6 | |
#define echoAtas 7 | |
#define enA 8 | |
#define in1 9 |
NewerOlder