Problem # 1: Numbers to Text Conversion //—www.skellainnovations.com—// #include<iostream> #include<conio.h> #include<windows.h> using namespace std; void gotoxy(int x, int y) { HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE); COORD pos; pos.X = x; pos.Y = y; SetConsoleCursorPosition(hConsole,pos); } int main(){ int a,b,c,d,e; SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 11); gotoxy(20,12); cout << “Enter Number : “; cin >>a; gotoxy(20,16); if (a==0){ switch (a) case […]
About Kel Ragonton
http://kel.skellainnovations.com
Posts by Kel Ragonton:
The Real Hoverboard: Short History Overview How did hoverboards start? Are hoverboards real? Hoverboard was actually inspired from the movie, “Back to the Future”. This movie was filmed in 1989, where Michael J. Fox and his girlfriend are dashed into the future to the year 2015. In the movie, this levitating board came from a fictional scooter […]
Basic Programming Tutorial for C++ I found this in my old storage and I would like to share this to you. Here is an example of how to do a simple and basic object oriented programming in C++. Please be guided accordingly and follow the important points used in the objected oriented programming source code […]
How to Play Android Applications Using Your Computer? As we all know, android applications can only be used through smartphones. What if you don’t have one or your smartphone is under repair? Does it mean, you can’t play android games? Worry no more! Developers create emulators to run android applications. They call this virtual smartphone as […]
RUN Commands and Shortcuts in Windows 7 or 8 I am a Windows user and currently using Windows 8. Aside from that, I am a lazy kid who is fond of keyboard shortcut keys. So, I will share to you all of my favorite run commands and shortcuts for Windows in particular. If you want […]
Android Programming Tutorial: The Basics Objects you need: Textview Edittext Button Toast Note: I have recorded this video last 2013. If there are updates, kindly adjust and adapt to changes. The Basics: Input + Button Event + Toast The following are the sequence of my video tutorial for basic android application development. I have combined different […]