Computer Science, asked by SK100, 8 months ago

Write a java program to input one terminating decimal fraction (maximum five digit after decimal point) then convert it into p/q form and display the value of p and q.

Please help anyone. ​

Answers

Answered by sonali2853
2

Explanation:

Java Basics

This chapter explains the basic syntaxes of the Java programming language. I shall assume that you have written some simple Java programs. Otherwise, read "Introduction To Java Programming for First-time Programmers".

To be proficient in a programming language, you need to master two things:

The syntax of the programming language: Not too difficult to learn a small set of keywords and syntaxes. For examples, JDK 1.8 has 48 keywords; C11 has 44, and C++11 has 73.

The Application Program Interface (API) libraries associated with the language: You don’t want to write everything from scratch yourself. Instead, you can re-use the available code in the library. Learning library could be difficult as it is really huge, evolving and could take on its own life as another programming language.

The first few sections are a bit boring, as I have to explain the basic concepts with some details.

You may also try the "Exercises on Java Basics".

1. Basic Syntaxes

1.1 Steps in Writing a Java Program

The steps in writing a Java program is illustrated as follows:

JavaBasics_Process.png

Step 1: Write the source code Xxx.java using a programming text editor (such as Sublime Text, Atom, Notepad++, Textpad, gEdit) or an IDE (such as Eclipse or NetBeans).

Step 2: Compile the source code Xxx.java into Java portable bytecode Xxx.class using the JDK Compiler by issuing command:

javac Xxx.java

Step 3: Run the compiled bytecode Xxx.class with the input to produce the desired output, using the Java Runtime by issuing command:

java Xxx

1.2 Java Program Template

You can use the following template to write your Java programs. Choose a meaningful "Classname" that reflects the purpose of your program, and write your programming statements inside the body of the main() method. Don't worry about the other terms and keywords now. I will explain them in due course. Provide comments in your program!

1

2

3

4

5

6

7

8

/**

* Comment to state the purpose of the program

*/

public class Classname { // Choose a meaningful Classname. Save as "Classname.java"

public static void main(String[] args) { // Entry point of the program

// Your programming statements here!!!

}

}

1.3 A Sample Program Illustrating Sequential, Decision and Loop Constructs

Below is a simple Java program that demonstrates the three basic programming constructs: sequential, loop, and conditional. Read "Introduction To Java Programming for First-time Programmers" if you need help in understanding this program.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

/**

* Find the sums of the running odd numbers and even numbers from a given lowerbound

* to an upperbound. Also compute their absolute difference.

*/

public class OddEvenSum { // Save as "OddEvenSum.java"

public static void main(String[] args) {

// Declare variables

int lowerbound = 1, upperbound = 1000; // Define the bounds

int sumOdd = 0; // For accumulating odd numbers, init to 0

int sumEven = 0; // For accumulating even numbers, init to 0

int absDiff; // Absolute difference between the two sums

// Use a while loop to accumulate the sums from lowerbound to upperbound

int number = lowerbound; // loop init

while (number <= upperbound) { // loop test

// number = lowerbound, lowerbound+1, lowerbound+1, ..., upperbound

// A if-then-else decision

if (number % 2 == 0) { // Even number

sumEven += number; // Same as sumEven = sumEven + number

} else { // Odd number

sumOdd += number; // Same as sumOdd = sumOdd + number

}

++number; // loop update for next number

}

// Another if-then-else Decision

if (sumOdd > sumEven) {

absDiff = sumOdd - sumEven;

} else {

absDiff = sumEven - sumOdd;

}

// OR using one liner conditional expression

//absDiff = (sumOdd > sumEven) ? sumOdd - sumEven : sumEven - sumOdd;

// Print the results

System.out.println("The sum of odd numbers from " + lowerbound + " to " + upperbound + " is: " + sumOdd);

System.out.println("The sum of even numbers from " + lowerbound + " to " + upperbound + " is: " + sumEven);

System.out.println("The absolute difference between the two sums is: " + absDiff);

}

}

The expected outputs are:

The sum of odd numbers from 1 to 1000 is: 250000

The sum of even numbers from 1 to 1000 is: 250500

The absolute difference between the two sums is: 500

Answered by Anonymous
3

Explanation:

:

Java Basics

This chapter explains the basic syntaxes of the Java programming language. I shall assume that you have written some simple Java programs. Otherwise, read "Introduction To Java Programming for First-time Programmers".

To be proficient in a programming language, you need to master two things:

The syntax of the programming language: Not too difficult to learn a small set of keywords and syntaxes. For examples, JDK 1.8 has 48 keywords; C11 has 44, and C++11 has 73.

The Application Program Interface (API) libraries associated with the language: You don’t want to write everything from scratch yourself. Instead, you can re-use the available code in the library. Learning library could be difficult as it is really huge, evolving and could take on its own life as another programming language.

The first few sections are a bit boring, as I have to explain the basic concepts with some details.

You may also try the "Exercises on Java Basics".

1. Basic Syntaxes

1.1 Steps in Writing a Java Program

The steps in writing a Java program is illustrated as follows:

JavaBasics_Process.png

Step 1: Write the source code Xxx.java using a programming text editor (such as Sublime Text, Atom, Notepad++, Textpad, gEdit) or an IDE (such as Eclipse or NetBeans).

Step 2: Compile the source code Xxx.java into Java portable bytecode Xxx.class using the JDK Compiler by issuing command:

javac Xxx.java

Step 3: Run the compiled bytecode Xxx.class with the input to produce the desired output, using the Java Runtime by issuing command:

block program.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

/**

* Find the sums of the running odd numbers and even numbers from a given lowerbound

* to an upperbound. Also compute their absolute difference.

*/

public class OddEvenSum { // Save as "OddEvenSum.java"

public static void main(String[] args) {

// Declare variables

int lowerbound = 1, upperbound = 1000; // Define the bounds

int sumOdd = 0; // For accumulating odd numbers, init to 0

int sumEven = 0; // For accumulating even numbers, init to 0

int absDiff; // Absolute difference between the two sums

// Use a while loop to accumulate the sums from lowerbound to upperbound

int number = lowerbound; // loop init

while (number <= upperbound) { // loop test

// number = lowerbound, lowerbound+1, lowerbound+1, ..., upperbound

// A if-then-else decision

if (number % 2 == 0) { // Even number

sumEven += number; // Same as sumEven = sumEven + number

} else { // Odd number

sumOdd += number; // Same as sumOdd = sumOdd + number

}

++number; // loop update for next number

}

// Another if-then-else Decision

if (sumOdd > sumEven) {

absDiff = sumOdd - sumEven;

} else {

absDiff = sumEven - sumOdd;

}

// OR using one liner conditional expression

//absDiff = (sumOdd > sumEven) ? sumOdd - sumEven : sumEven - sumOdd;

// Print the results

System.out.println("The sum of odd numbers from " + lowerbound + " to " + upperbound + " is: " + sumOdd)

Similar questions