Mostrando entradas con la etiqueta IF. Mostrar todas las entradas
Mostrando entradas con la etiqueta IF. Mostrar todas las entradas

lunes, 16 de mayo de 2016

calcule el salaro semanal de pendiendo al turno sentencia if

calcule el salaro semanal de pendiendo al turno

import java.io.*;

class prop16

{

public static void main(String[]args)throws IOException

{
<!--more-->
BufferedReader in=new BufferedReader(new InputStreamReader(System.in));

System.out.print("ingrese el numero de horas laboradas: ");

double h=Double.valueOf(in.readLine().trim()).doubleValue();



System.out.print("ingrese el pago por hora laborada: ");

double p=Double.valueOf(in.readLine().trim()).doubleValue();



System.out.println("ingrese el turno de labor: ");

int t=Integer.parseInt(in.readLine());



int tm=1;

int tt=2;

int tn=3;



double pago;

if(t==1 && t==2)

{

pago=h*p;

System.out.println("el salario semanal es: "+pago+" soles");}



else {

if(t==3)

{pago=1.3*(h*p);

System.out.println("el salario semanal es: "+pago+" soles");}

else

System.out.println("turno no existente");}

}

}
---

determinar el menor de 5 numeros sentencia if



determinar el menor de 5 numeros



import java.io.*;



class prop4 {

public static void main(String[]args)throws IOException

{

BufferedReader in=new BufferedReader(new InputStreamReader(System.in));

<!--more-->

System.out.print("ingresar numero a:");

int a=Integer.parseInt(in.readLine());

System.out.print("ingrese numero b:");

int b=Integer.parseInt(in.readLine());

System.out.print("ingresar numero c:");

int c=Integer.parseInt(in.readLine());

System.out.print("ingrese numero d:");

int d=Integer.parseInt(in.readLine());

System.out.print("ingrese numero e:");

int e=Integer.parseInt(in.readLine());

if ((a<b && a < c && a < d&& a < e)
{

System.out.println(" menor es : "+a);

}

else if ((b<a && b < c && b < d && b < e)
{

System.out.println(" menor es : "+b);

}

else if ((c<a && c < b && c < d && b < e))

{

System.out.println(" menor es : "+c);

}

else if ((d<a && d < b && d<c && d < e)
{

System.out.println(" menor es : "+d);

}

else

{

System.out.println(" menor es : "+e);

}

}

}

valor absoluto CON SENTENCIA IF

valor absoluto
import java.io.*; 


class propuesto2valorabsoluto{

public static void main(String[]args) throws IOException

{

BufferedReader in=new BufferedReader (new InputStreamReader(System.in));

<!--more-->

System.out.print("ingrese las horas de llamada: ");

double a=Double.valueOf(in.readLine().trim()).doubleValue();

if (a<0)
{

System.out.println("valor absoluto:"+(Math.abs(a)));

}

else

{

System.out.println("valor absoluto es:"+a);

}


}

}

ENTRADAS POPULARES