More Related Content
DOCX
PDF
Smart Zona d'Activitat Empresarial PDF
PDF
PDF
ChecklistOpsRigor_LaunchParty_101614-r1 PPTX
PPTX
PPTX
Viewers also liked
PPTX
PDF
EuroSys Education_020415_Windows in the classroom PPT
PDF
Social Media and Science a wedding made in Heaven...
or in Hell? PPTX
Marlon mera 27 04-2015 - internet la revolución del siglo xxi 2 PDF
More from Camila Liliana Perez Perez
PPTX
PPTX
PPTX
PPTX
PPTX
PPTX
PPTX
DOCX
DOCX
examen diagnostico corregido DOCX
DOCX
PDF
PPTX
PPTX
PPTX
PPTX
PPTX
PPTX
DOCX
PPTX
Programa 3.
- 1.
- 3.
CODIGO
@Override
public void calcular(View v){
EditText s=(EditText) findViewById (R.id.sueldo);
TextView i=(TextView) findViewById (R.id.ispt);
TextView sa=(TextView) finViewById (R.id.salario);
double su=Double.parseDouble(s.getText().toString());
double is=su*0.16;
double st=su-is;
i.setText(String.valueOf(is));
Sa.setText(String.valueOf(st));
}
}
- 4.