The Best Strategy is Content Marketing with Social Media Marketing Content Marketing and Social Media Marketing are partners in crime. But, you are not dealing with crime literally; you are dealing with productivity. These two marketing strategies just work together very well. There is no doubt about the results they have been creating. If these […]
About Kel Ragonton
http://kel.skellainnovations.com
Posts by Kel Ragonton:
Best Free Useful Tools for Your Website, Blog or Thesis If I have known about these tools before when I was creating our documentation for thesis, then probably I should have lessened my difficulties and anxiety at the same time. It may be easy for some to construct words out of their fruitful mind, but most […]
In our modern year, it’s quite hard to think of something that hasn’t been invented yet. From one invention to another, our world has been drastically changing. Thus, we think of ways on how to improve our lifestyle by adding features to a former innovation. It may seem to be very difficult to create something […]
Amazing Innovations for Your Pets and Stray Animals In Istanbul, an innovative vending machine has been introduced to help feed stray dogs and cats, offering food and essential care to the city’s homeless animals. This unique machine allows both locals and tourists to contribute to the well-being of these animals by simply pressing a button to […]
You don’t need to throw away all of your old and used plastic bottles. There are a lot of innovative ideas that you can do out of those. I will show you some awesome DIY projects and tutorials on how to recycle plastic bottles, bottle caps and plastic spoons in different creative ways. Let us […]
How to Learn C++ and What Makes It Different with C Programming Language? I am going to show you how to nail those C++ programming common problems that you are encountering in every programming language exercises. I found these files in my old storage, so I will be sharing these C++ programming solutions to those […]
Fibonacci sequence is simply by adding up the two numbers before it. The numbers are similarly related to Lucas Numbers which is another mathematical sequence. Problem #4 : Fibonacci //—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); […]
Problem # 3: Ascending Asterisk (Christmas Tree Shape) //—www.skellainnovations.com—// #include<iostream> #include<conio.h> using namespace std; int main() { int a,b,c,n; cout<<“Enter a Number: “; cin>>n; for(a=1;a<=n;a++){ for(b=a;b<n;b++){ cout<<” “;} for(c=1;c<=a;c++){ cout<<“* “;} cout<<endl;} getch (); } //—www.skellainnovations.com—// Breakdown of Codes Problem Overview Variables n : integer > value : input number a : integer > value : 1st […]
Problem # 2: Descending Numbers (Rotated Half Triangle Shape) //—www.skellainnovations.com—// #include <iostream.h> #include <conio.h> #define ct cout void dec(int x); int main() { clrscr(); int x; ct<<“Enter a Number: “; cin>>x; dec(x); getch(); return 0; } void dec(int x) { int a,b; for(a=x;a>=1;a–) { for(b=a;b>=1;b–) { ct<<b; } ct<<endl; } } //—www.skellainnovations.com—// Breakdown of […]
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 […]