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<stdio.h> | |
int main() { | |
int nominal[] = {100000, 50000, 20000, 10000, 5000, 2000, 1000, 500, 200, 100}; | |
size_t nominal_size = sizeof(nominal) / sizeof(nominal[0]); | |
int jumlah; | |
printf("Masukkan jumlah nominal uang : "); | |
scanf("%i", &jumlah); |
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
<?php | |
class Doors | |
{ | |
protected $doors = []; | |
protected $round = 0; | |
const CLOSE = "close"; | |
const HALF_CLOSE = "half_close"; | |
const OPEN = "open"; |
NewerOlder