Skip to main content

Posts

Showing posts from July, 2017

How to code a jeoparody game كيف أبرمج لعبة من سيربح المليون

Have you ever thought about making your own game and programming it by yourself? Then this is your chance! This is my project for a class called Programming Application for Engineering - CS159 - American University of The Middle East (AUM) - Spring 2016. We were supposed to make a jeopardy game that has three levels which are easy, intermediate, and difficult level. When you answer a question correctly, your score will increase based on the points of that question. When you reach the end of the level, you will be asked if you want to save your score or not as well as if you want to see your previous score. After that you will be asked if you want to play a new session. The coding program used in the code below is called Microsoft Visual Studio. And we used c++ language. #include<stdio.h> #include<stdlib.h> void simple(int score);//add function simple level massege void Intermediate(int score);//add function intermediate level void Difficult(int score); /