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 / letter.cpp
Created May 11, 2018 16:57
finds the letter is consonant or vowel
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
char vowel,again;
do{
cout<<"For see your character is a vowel or not\nplease put a character\n";
@edenizk
edenizk / BMIcalculator.cpp
Created May 11, 2018 16:56
BMI calculator
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
double bmi,w,h;
cout<<"Welcome to BMI(body mass index) calculator\n for start please write your weight[kilogram]:";
cin>>w;
@edenizk
edenizk / calculator.cpp
Created May 11, 2018 16:56
small calculator
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
char ch,cont;
double a,b,c,d,e;
do{
cout<<"Choose Which Calculation Do You Want To Make:"<<endl
@edenizk
edenizk / max.cpp
Created May 11, 2018 16:56
finds the max value
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
int a, b, c;
cout<<"write 3 value"<<endl;
cin>>a>>b>>c;
@edenizk
edenizk / guessinggame.cpp
Created May 11, 2018 16:52
guessing game
#include <iostream>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <time.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void progressbar(){
cout<<"\t\t ";
@edenizk
edenizk / QUADRATICEQUATIONS2.cpp
Created May 11, 2018 16:50
QUADRATIC EQUATIONS CALCULATOR2
#include <iostream>
#include <math.h>
#include <windows.h>
#include <conio.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void progressbar(){
cout<<"\t\t ";
/*Loading bar*/
@edenizk
edenizk / quadraticequation.cpp
Created May 11, 2018 16:48
QUADRATIC EQUATIONS CALCULATOR
#include <iostream>
#include <math.h>
#include <iostream>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <time.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
@edenizk
edenizk / palibdrome.cpp
Created May 11, 2018 16:46
Palindrome Checker~
#include <iostream>
#include <windows.h>
#include <time.h>
#include <conio.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void progressbar(){
cout<<"\t\t\t\t ";
/*Loading bar*/
@edenizk
edenizk / arrayplay.cpp
Created May 11, 2018 16:43
playing with arrays
#include <iostream>
#include <time.h>
#include <stdlib.h>
#include <conio.h>
#include <iomanip>
#include <windows.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
@edenizk
edenizk / whitescreen.cpp
Created May 11, 2018 16:42
turns screen to white
#include <iostream>
#include <windows.h>
#include <conio.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void mena(){
HANDLE a = GetStdHandle(STD_OUTPUT_HANDLE);
int co=178;
for(int j=0;j<5;j++){
string s;