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

Thursday 7 April 2011

Java program to calculate salary of a employe

import java.util.*;
class p1
{
public static void main (String arg[])
{
Scanner in=new Scanner (System.in);
int s,s1=1,e,t=0;
System.out.print ("\n\t Enter total number of Employes = ");
e=in.nextInt();
int a=e;
while (s1<=e)
{
System.out.print ("\n\t Enter salary of Employe no "+s1+" = ");
s=in.nextInt();
t+=s;
++s1;
}
float avg=t/a;
if (avg<60)
System.out.println ("\n\t Good ");
else
System.out.println ("\n\t Fair ");
}
}

No comments:

Post a Comment

Share