Changing background or text of console in c++ is not a very major task. One can do it easily by doing some really good efforts . This tutorial is all about changing the colors in c++ which helps to look application similar...
The best way to code programs.
Powered by Blogger.
.
Home > Archives for January 2015
Thursday, 22 January 2015
How to validate a date in c++ ?
Validation of date in c++ involves three steps -
1) Declare the function inside the body of a class.
2) Give definition to it outside the class using scope resolution.
3) Call it using do while loop by passing string...
How to Validate String in c++ ?
Validation of string in c++ involves three steps -1) Declare the function inside the body of a class.2) Give definition to it outside the class using scope resolution.3) Call it using do while loop by passing string in...
How to Validate a Number/Integer in c++ ?
Validation of integer in c++ involves three steps -1) Declare the function inside the body of a class.2) Give definition to it outside the class using scope resolution.3) Call it using do while loop by passing string type...
Subscribe to:
Posts (Atom)
Programs
..
...
Premium Sponsor
Find us on Google Plus
Labels
Popular Posts
-
import java.util.Scanner; class Marksheet { public static void main(String[] arg) { Scanner sc=new Scanner(System.in); System.out.pri...
-
Steps to develop a hello world program in java- class Hello { //Everything should be written inside this block public static voi...
-
Program to find fibonacci series in JAVA class fib { public static void main(String[] arg) { int i,a=0,b=0,c=1; int n=8; ...
-
import java.util.Scanner; class conversion { static float dollartorupees() { Scanner sc=new Scanner(System.in); System.out...
-
Validation of date in c++ involves three steps - 1) Declare the function inside the body of a class. 2) Give definition to it outside t...
-
import java.util.Scanner; class Product { Scanner sc=new Scanner(System.in); int ProductID; String ProductName, ProductType; float Pr...
-
package addressbook; public class AddressBook // This class defines an address book, consisting of 10 parts { // Class constant ...
-
import java.text.*; public class Circle { public static void main (String[] args) { // create decimal format Decim...
-
import java.util.Scanner; class diagonalm { public static void main(String[] arg) { int i,j; int a[][]=new int[3][3]; Scanner ...
-
Changing background or text of console in c++ is not a very major task. One can do it easily by doing some really good efforts . This tutor...