Skip to content

Instantly share code, notes, and snippets.

View edenizk's full-sized avatar
:shipit:
🐱‍💻

Ergin Deniz Kosecioglu edenizk

:shipit:
🐱‍💻
View GitHub Profile
@edenizk
edenizk / coffeemachine.cpp
Last active May 11, 2018 17:33
coffee machine
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <windows.h>
#include <iomanip>
#include <conio.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
/********************************************************/
@edenizk
edenizk / polymorphism_Animal.java
Created July 19, 2018 00:11
polymorphism with animal class
package com.example.deniz.polymorphism;
public class Animal {
private String animalName;
private String animalColor;
private int animalSpeed;