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 This is not just an ordinary vending machine. Since Istanbul has more than 150,000 stray dogs and cats, an awesome company created the technology and has been distributed all over the city. The machine dispenses food and water for stray animals in return for recycled plastic bottles. Whenever someone deposits a plastic […]
How to Read Guitar Tabs For the tabs, you need to follow the arrangement of eBGDAE format of the strings. e | 1st string (below) B | 2nd string G | 3rd string D | 4th string A | 5th string E | 6th string (above) You should make sure your fingers are placed perfectly […]
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 […]