Thursday, 26 November 2015

Fizz Buzz Program

Write a program that will print all the numbers from 1 to 100 that will print "FizzBuzz", for numbers that are divisible by both 3 and 5 and print "Fizz" for numbers divisible by 3 and "Buzz" for numbers divisible by 5: for(var i=1; i<=100; i++) { if((i % 3 == 0) && (i % 5 == 0)) { document.write("FizzBuzz"); document.write(" "); } else if(i % 3 == 0)...

Sunday, 24 May 2015

How To Create a Layout In HTML5

Here is a very simple way you can create a new HTML5 layout. This is a responsive layout that means this will fit to any screen. you can check this by decreasing the width of your browser,  this will adjust with the screen. Here we use width as percentage(%), this will adjust the site with your...

Friday, 22 May 2015

Program In C++ to Print Fibonacci Numbers

Problem: Write a program in c++ that will print the fibonacci numbers to a limit. Description: This is another best program in c++ which prints the fibonacci numbers. You have to enter the number till where you want to print the series. #include<iostream> #include<cmath> using namespace...

Write a Program In C++ That Will Convert Roman Number Into Decimal Number

Problem: Write a c++ program that will convert roman numbers into its equivalent decimal numbers. This program takes a roman number as input and converts into decimal number. please make sure to keep the caps lock on. Run this program in devc++ #include <iostream> #include <string> using...