Search This Blog

UI/UX Design | Web Development | Mobile Application Development

Whether you need UI/ UX design, web development services, or mobile app development services, Qaabil Digitals will be more than happy to help you. We work with top software developers, designers, and project managers. We tailor our services to suit your exact needs. We closely look at your company, listen to your story, and bring about the best ideas and solutions that can help you drive solid results. We don’t just produce work that works. We produce work that matters. Get a quote now Or Talk to us

Friday 8 April 2011

A simple Java program which tells the weather

import java.util.*;
class weather
{
public static void main (String arg[])
{
Scanner in=new Scanner (System.in);
int a;
System.out.print ("\n\t Enter the temprature in Celcious = ");
a=in.nextInt();
if (a<=20)
System.out.print ("\n\t Whether is Cool ");
else if (a<=30 && a>=21)
System.out.println ("\n\t Whether is Fine ");
else if (a<=40 && a>=31)
System.out.println ("\n\t Whether is Hot ");
else 
System.out.println ("\n\t Whether is very Hot ");
}
}

No comments:

Post a Comment

Share