6th pay commision calculator

click here to get the pay calculator :

pay calculator

Union Cabinet Approval : The official press release

at 11:50 PM

The union cabinet today announced the implementation of the recommendations of the pay commission for all central government employees, including the defence services personnel. The two-page official press communiqué can be downloaded at http://pib.nic.in/archieve/others/2008/aug/r2008081405cab.pdf

The details given in the above press release are strewn all over the media. However, one has to await a detailed government notification to work out the fine print of the implementable recommendations.

The simple calculator….

this is the source code for a simple calculator.

#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
float n1=0,n2=0,re=0;
char cho;
cout<<”Welcome to Calc basic \n”;
cout<<”Please enter the 1st number then space followed by arithmetic operator then space and second number \n”
<<”For eg: 1 + 2 and press enter key \n\n\n”;
cin>>n1>>cho>>n2;
switch (cho)
{
case ‘+’ :re=n1+n2;
break;
case ‘-’ :re=n1-n2;
break;
case ‘*’ :re=n1*n2;
break;
case ‘/’ :if (n2==0)
{
cout<<”Sorry division by zero is undefined”;
}
else
{
re=n1/n2;
}
break;
case ‘%’ :if (n2==0)
{
cout<<”Sorry division by zero is undefined”;
}
else
{
re=n1/n2;
cout<<”modulo is not defined for floats \n”;
}
break;
default :cout<<”you have entered an unusual operation\n”;
}
cout<<”your result of “<<n1<<cho<<n2<<” is “<<re;
getch();
}

Follow

Get every new post delivered to your Inbox.