public void onClick(View view) { //declare variables double a,b,c; //text values from x and y String S1= inputXEdit_Text.getText().toString(); String S2 = inputYEdit_Text.getText().toString(); a= Double.parseDouble(S1); b= Double.parseDouble(S2); //adding operation with variables c=a+b; //c=a-b; // convert the answer to a number String s=Double.toString(c); //display result it textView textView.setText(s); Please help to add math operations(-, * , / ) on Java

New Perspectives on HTML5, CSS3, and JavaScript
6th Edition
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Patrick M. Carey
Chapter3: Designing A Page Layout: Creating A Website For A Chocolatier
Section3.3: Visual Overview: Layout With Positioning Styles
Problem 4QC
icon
Related questions
Question

public void onClick(View view) {

//declare variables
double a,b,c;
//text values from x and y
String S1= inputXEdit_Text.getText().toString();
String S2 = inputYEdit_Text.getText().toString();

a= Double.parseDouble(S1);
b= Double.parseDouble(S2);
//adding operation with variables
c=a+b;
//c=a-b;
// convert the answer to a number
String s=Double.toString(c);
//display result it textView
textView.setText(s);

Please help to add math operations(-, * , / ) on Java

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Database connectivity
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning