Welcome

Hi! This blog is for beginners of c++ and java .You can check and pick codes for your programming assignments. This will also help you to understand the concepts of these programming languages. Its all about programming.

If Else Practice

Wednesday, May 18, 2011

#include <iostream.h>
#include <conio.h>
int main()
{
    clrscr();
    double temp; //declaration
    cout <<"Enter today's temprature (celsius) :"; //instruction for user
    cin>>temp;
    if (temp<5)
        cout <<"\nWear a coat today " <<endl;
    cout <<"have a great day|";
    getch();
    return 0;
}