SlideShare a Scribd company logo
1 of 7
Download to read offline
Need to make a program using the scanner class that outputs F to C 32f-212 and 0c-100c. Do i
need to use a for loop? Please help thanks
A table needs to be made
Faren. Celsius
--------------------
32.00 | 0.00
ect | ect
212.00 | 100.00
-----------------------
output should look something like that 2 El import java util. Scanner public class Temp public
static void main (String args) Scanner input new Scanner System in) double celsius, fahrenheit;
10 System out print Enter a temperature in Fahrenheit fahrenheit input .next Double 12 celsius
(fahrenheit 32) 5 9; 14 System out println. I fahrenheit I celsius "I") for 17 18 20 21 22 23
Output X Tempo (run x Temp (run) #2 x Enter a temperature in Fahrenheit: 32 I 32.0 0.0 I
BUILD SUCCESSFUL (total time: 4 seconds
Solution
package org.students;
import java.text.DecimalFormat;
import java.util.Scanner;
public class FahrenheitToCelsius {
public static void main(String[] args) {
//Declaring variable
double tCelsius;
int tFah;
//DecimalFormat class is used to format the output
DecimalFormat df=new DecimalFormat("#.##");
//Scanner object is used to get the inputs entered by the user
Scanner sc=new Scanner(System.in);
System.out.print("Enter temperature(in Fahrenheit) :");
tFah=sc.nextInt();
System.out.println(" Faren.|Celsius");
System.out.println("----------------");
/* this for loop will convert the Fahrenheit to celsius
* and display in tabular format
*/
for(tFah=32;tFah<=212;tFah++)
{
tCelsius=(tFah-32)*(5.0/9.0);
System.out.println(tFah+" | "+df.format(tCelsius));
}
System.out.println("----------------");
}
}
___________________
Output:
Enter temperature(in Fahrenheit) :32
Faren.|Celsius
----------------
32 | 0
33 | 0.56
34 | 1.11
35 | 1.67
36 | 2.22
37 | 2.78
38 | 3.33
39 | 3.89
40 | 4.44
41 | 5
42 | 5.56
43 | 6.11
44 | 6.67
45 | 7.22
46 | 7.78
47 | 8.33
48 | 8.89
49 | 9.44
50 | 10
51 | 10.56
52 | 11.11
53 | 11.67
54 | 12.22
55 | 12.78
56 | 13.33
57 | 13.89
58 | 14.44
59 | 15
60 | 15.56
61 | 16.11
62 | 16.67
63 | 17.22
64 | 17.78
65 | 18.33
66 | 18.89
67 | 19.44
68 | 20
69 | 20.56
70 | 21.11
71 | 21.67
72 | 22.22
73 | 22.78
74 | 23.33
75 | 23.89
76 | 24.44
77 | 25
78 | 25.56
79 | 26.11
80 | 26.67
81 | 27.22
82 | 27.78
83 | 28.33
84 | 28.89
85 | 29.44
86 | 30
87 | 30.56
88 | 31.11
89 | 31.67
90 | 32.22
91 | 32.78
92 | 33.33
93 | 33.89
94 | 34.44
95 | 35
96 | 35.56
97 | 36.11
98 | 36.67
99 | 37.22
100 | 37.78
101 | 38.33
102 | 38.89
103 | 39.44
104 | 40
105 | 40.56
106 | 41.11
107 | 41.67
108 | 42.22
109 | 42.78
110 | 43.33
111 | 43.89
112 | 44.44
113 | 45
114 | 45.56
115 | 46.11
116 | 46.67
117 | 47.22
118 | 47.78
119 | 48.33
120 | 48.89
121 | 49.44
122 | 50
123 | 50.56
124 | 51.11
125 | 51.67
126 | 52.22
127 | 52.78
128 | 53.33
129 | 53.89
130 | 54.44
131 | 55
132 | 55.56
133 | 56.11
134 | 56.67
135 | 57.22
136 | 57.78
137 | 58.33
138 | 58.89
139 | 59.44
140 | 60
141 | 60.56
142 | 61.11
143 | 61.67
144 | 62.22
145 | 62.78
146 | 63.33
147 | 63.89
148 | 64.44
149 | 65
150 | 65.56
151 | 66.11
152 | 66.67
153 | 67.22
154 | 67.78
155 | 68.33
156 | 68.89
157 | 69.44
158 | 70
159 | 70.56
160 | 71.11
161 | 71.67
162 | 72.22
163 | 72.78
164 | 73.33
165 | 73.89
166 | 74.44
167 | 75
168 | 75.56
169 | 76.11
170 | 76.67
171 | 77.22
172 | 77.78
173 | 78.33
174 | 78.89
175 | 79.44
176 | 80
177 | 80.56
178 | 81.11
179 | 81.67
180 | 82.22
181 | 82.78
182 | 83.33
183 | 83.89
184 | 84.44
185 | 85
186 | 85.56
187 | 86.11
188 | 86.67
189 | 87.22
190 | 87.78
191 | 88.33
192 | 88.89
193 | 89.44
194 | 90
195 | 90.56
196 | 91.11
197 | 91.67
198 | 92.22
199 | 92.78
200 | 93.33
201 | 93.89
202 | 94.44
203 | 95
204 | 95.56
205 | 96.11
206 | 96.67
207 | 97.22
208 | 97.78
209 | 98.33
210 | 98.89
211 | 99.44
212 | 100
----------------
___________Thank You

More Related Content

Similar to Need to make a program using the scanner class that outputs F to C 3.pdf

2008 2010 он өсөлт бууралт new.
2008 2010 он өсөлт бууралт new.2008 2010 он өсөлт бууралт new.
2008 2010 он өсөлт бууралт new.
Mtuya.hsum
 
Midterm score mk562
Midterm score mk562Midterm score mk562
Midterm score mk562
Real King
 
Ce 133 D 2 C Standing
Ce 133 D 2 C StandingCe 133 D 2 C Standing
Ce 133 D 2 C Standing
narutosage7
 

Similar to Need to make a program using the scanner class that outputs F to C 3.pdf (18)

Tabel x2
Tabel x2Tabel x2
Tabel x2
 
Refrigeration system cleaning
Refrigeration system cleaningRefrigeration system cleaning
Refrigeration system cleaning
 
Statistics and Basic Probability
Statistics and Basic ProbabilityStatistics and Basic Probability
Statistics and Basic Probability
 
600x600mm 48w 6000k led panel lights
600x600mm 48w 6000k led panel lights600x600mm 48w 6000k led panel lights
600x600mm 48w 6000k led panel lights
 
NEWSTAR LED's 600x600 48w led panel light 100lm per watt
NEWSTAR LED's 600x600 48w led panel light 100lm per wattNEWSTAR LED's 600x600 48w led panel light 100lm per watt
NEWSTAR LED's 600x600 48w led panel light 100lm per watt
 
Us20170260029 a1
Us20170260029 a1Us20170260029 a1
Us20170260029 a1
 
2008 2010 он өсөлт бууралт new.
2008 2010 он өсөлт бууралт new.2008 2010 он өсөлт бууралт new.
2008 2010 он өсөлт бууралт new.
 
Limites de control para gráficos xr xs
Limites de control para gráficos xr xsLimites de control para gráficos xr xs
Limites de control para gráficos xr xs
 
A Modern Fairy Tale: Java Serialization
A Modern Fairy Tale: Java Serialization A Modern Fairy Tale: Java Serialization
A Modern Fairy Tale: Java Serialization
 
Kiswire hyrope 2016
Kiswire   hyrope 2016Kiswire   hyrope 2016
Kiswire hyrope 2016
 
D l table
D l tableD l table
D l table
 
Staad pro file
Staad pro fileStaad pro file
Staad pro file
 
Midterm score mk562
Midterm score mk562Midterm score mk562
Midterm score mk562
 
Tablice beton
Tablice betonTablice beton
Tablice beton
 
Ce 133 D 2 C Standing
Ce 133 D 2 C StandingCe 133 D 2 C Standing
Ce 133 D 2 C Standing
 
Derivative Margin Report 03 JAN
Derivative Margin Report 03 JAN Derivative Margin Report 03 JAN
Derivative Margin Report 03 JAN
 
Derivative Reports - Mansukh Investments & Trading Solutions.
Derivative Reports - Mansukh Investments & Trading Solutions. Derivative Reports - Mansukh Investments & Trading Solutions.
Derivative Reports - Mansukh Investments & Trading Solutions.
 
最小 Hello World! チャレンジ
最小 Hello World! チャレンジ最小 Hello World! チャレンジ
最小 Hello World! チャレンジ
 

More from PRATIKSINHA7304

A new class will be added to the startup package to start up the eve.pdf
A new class will be added to the startup package to start up the eve.pdfA new class will be added to the startup package to start up the eve.pdf
A new class will be added to the startup package to start up the eve.pdf
PRATIKSINHA7304
 
Are these statements regarding Rhizobacteria true Plant Growth P.pdf
Are these statements regarding Rhizobacteria true Plant Growth P.pdfAre these statements regarding Rhizobacteria true Plant Growth P.pdf
Are these statements regarding Rhizobacteria true Plant Growth P.pdf
PRATIKSINHA7304
 
Wiater Company operates a small manufacturing facility. On January 1,.pdf
Wiater Company operates a small manufacturing facility. On January 1,.pdfWiater Company operates a small manufacturing facility. On January 1,.pdf
Wiater Company operates a small manufacturing facility. On January 1,.pdf
PRATIKSINHA7304
 
Which of the three types of activities reported on the statement of c.pdf
Which of the three types of activities reported on the statement of c.pdfWhich of the three types of activities reported on the statement of c.pdf
Which of the three types of activities reported on the statement of c.pdf
PRATIKSINHA7304
 
What are the pros and cons of using exFAT and ReFS on a Windows 2012.pdf
What are the pros and cons of using exFAT and ReFS on a Windows 2012.pdfWhat are the pros and cons of using exFAT and ReFS on a Windows 2012.pdf
What are the pros and cons of using exFAT and ReFS on a Windows 2012.pdf
PRATIKSINHA7304
 
What is the connection between relative frequency and probability.pdf
What is the connection between relative frequency and probability.pdfWhat is the connection between relative frequency and probability.pdf
What is the connection between relative frequency and probability.pdf
PRATIKSINHA7304
 
unixlinux - kernelexplain yield in user spaceexplain yield in k.pdf
unixlinux - kernelexplain yield in user spaceexplain yield in k.pdfunixlinux - kernelexplain yield in user spaceexplain yield in k.pdf
unixlinux - kernelexplain yield in user spaceexplain yield in k.pdf
PRATIKSINHA7304
 

More from PRATIKSINHA7304 (20)

Hi, I need help with a java programming project. specifically practi.pdf
Hi, I need help with a java programming project. specifically practi.pdfHi, I need help with a java programming project. specifically practi.pdf
Hi, I need help with a java programming project. specifically practi.pdf
 
Find the sum of the infinite geometric series if it exists. (If an .pdf
Find the sum of the infinite geometric series if it exists. (If an .pdfFind the sum of the infinite geometric series if it exists. (If an .pdf
Find the sum of the infinite geometric series if it exists. (If an .pdf
 
A new class will be added to the startup package to start up the eve.pdf
A new class will be added to the startup package to start up the eve.pdfA new class will be added to the startup package to start up the eve.pdf
A new class will be added to the startup package to start up the eve.pdf
 
Are these statements regarding Rhizobacteria true Plant Growth P.pdf
Are these statements regarding Rhizobacteria true Plant Growth P.pdfAre these statements regarding Rhizobacteria true Plant Growth P.pdf
Are these statements regarding Rhizobacteria true Plant Growth P.pdf
 
1. Prices may be different between two countries whenA. Both count.pdf
1. Prices may be different between two countries whenA. Both count.pdf1. Prices may be different between two countries whenA. Both count.pdf
1. Prices may be different between two countries whenA. Both count.pdf
 
[10 points]Add the.pdf
[10 points]Add the.pdf[10 points]Add the.pdf
[10 points]Add the.pdf
 
§ 7.3 7.6 Which member of the following pairs is likely to decompose .pdf
§ 7.3 7.6 Which member of the following pairs is likely to decompose .pdf§ 7.3 7.6 Which member of the following pairs is likely to decompose .pdf
§ 7.3 7.6 Which member of the following pairs is likely to decompose .pdf
 
You are requested to write the SQL commands to perform the following.pdf
You are requested to write the SQL commands to perform the following.pdfYou are requested to write the SQL commands to perform the following.pdf
You are requested to write the SQL commands to perform the following.pdf
 
write a prgoram that displays four images or objects in a 2 x 2 grid.pdf
write a prgoram that displays four images or objects in a 2 x 2 grid.pdfwrite a prgoram that displays four images or objects in a 2 x 2 grid.pdf
write a prgoram that displays four images or objects in a 2 x 2 grid.pdf
 
Wiater Company operates a small manufacturing facility. On January 1,.pdf
Wiater Company operates a small manufacturing facility. On January 1,.pdfWiater Company operates a small manufacturing facility. On January 1,.pdf
Wiater Company operates a small manufacturing facility. On January 1,.pdf
 
Which of the three types of activities reported on the statement of c.pdf
Which of the three types of activities reported on the statement of c.pdfWhich of the three types of activities reported on the statement of c.pdf
Which of the three types of activities reported on the statement of c.pdf
 
111. Definition Explanation (15) 1. Job speciation SolutionIII.pdf
111. Definition Explanation (15) 1. Job speciation SolutionIII.pdf111. Definition Explanation (15) 1. Job speciation SolutionIII.pdf
111. Definition Explanation (15) 1. Job speciation SolutionIII.pdf
 
What are the pros and cons of using exFAT and ReFS on a Windows 2012.pdf
What are the pros and cons of using exFAT and ReFS on a Windows 2012.pdfWhat are the pros and cons of using exFAT and ReFS on a Windows 2012.pdf
What are the pros and cons of using exFAT and ReFS on a Windows 2012.pdf
 
What led to the demise of ‘conventional Keynesian wisdom’ in the mid.pdf
What led to the demise of ‘conventional Keynesian wisdom’ in the mid.pdfWhat led to the demise of ‘conventional Keynesian wisdom’ in the mid.pdf
What led to the demise of ‘conventional Keynesian wisdom’ in the mid.pdf
 
What is the connection between relative frequency and probability.pdf
What is the connection between relative frequency and probability.pdfWhat is the connection between relative frequency and probability.pdf
What is the connection between relative frequency and probability.pdf
 
What factors led President Truman to support the creation of Israel .pdf
What factors led President Truman to support the creation of Israel .pdfWhat factors led President Truman to support the creation of Israel .pdf
What factors led President Truman to support the creation of Israel .pdf
 
unixlinux - kernelexplain yield in user spaceexplain yield in k.pdf
unixlinux - kernelexplain yield in user spaceexplain yield in k.pdfunixlinux - kernelexplain yield in user spaceexplain yield in k.pdf
unixlinux - kernelexplain yield in user spaceexplain yield in k.pdf
 
this is java. problem.i already make employee class. but i can not.pdf
this is java. problem.i already make employee class. but i can not.pdfthis is java. problem.i already make employee class. but i can not.pdf
this is java. problem.i already make employee class. but i can not.pdf
 
This fall Millie finally repaid her student loan. She originally bor.pdf
This fall Millie finally repaid her student loan. She originally bor.pdfThis fall Millie finally repaid her student loan. She originally bor.pdf
This fall Millie finally repaid her student loan. She originally bor.pdf
 
The term refers to a. Global Analysis of the proteins produced in .pdf
The term  refers to  a. Global Analysis of the proteins produced in .pdfThe term  refers to  a. Global Analysis of the proteins produced in .pdf
The term refers to a. Global Analysis of the proteins produced in .pdf
 

Recently uploaded

Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
EADTU
 
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
中 央社
 
SPLICE Working Group: Reusable Code Examples
SPLICE Working Group:Reusable Code ExamplesSPLICE Working Group:Reusable Code Examples
SPLICE Working Group: Reusable Code Examples
Peter Brusilovsky
 

Recently uploaded (20)

Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
 
AIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.pptAIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.ppt
 
MOOD STABLIZERS DRUGS.pptx
MOOD     STABLIZERS           DRUGS.pptxMOOD     STABLIZERS           DRUGS.pptx
MOOD STABLIZERS DRUGS.pptx
 
The Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDFThe Story of Village Palampur Class 9 Free Study Material PDF
The Story of Village Palampur Class 9 Free Study Material PDF
 
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽會考英聽
 
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhĐề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
 
Basic Civil Engineering notes on Transportation Engineering & Modes of Transport
Basic Civil Engineering notes on Transportation Engineering & Modes of TransportBasic Civil Engineering notes on Transportation Engineering & Modes of Transport
Basic Civil Engineering notes on Transportation Engineering & Modes of Transport
 
UChicago CMSC 23320 - The Best Commit Messages of 2024
UChicago CMSC 23320 - The Best Commit Messages of 2024UChicago CMSC 23320 - The Best Commit Messages of 2024
UChicago CMSC 23320 - The Best Commit Messages of 2024
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
 
Book Review of Run For Your Life Powerpoint
Book Review of Run For Your Life PowerpointBook Review of Run For Your Life Powerpoint
Book Review of Run For Your Life Powerpoint
 
OS-operating systems- ch05 (CPU Scheduling) ...
OS-operating systems- ch05 (CPU Scheduling) ...OS-operating systems- ch05 (CPU Scheduling) ...
OS-operating systems- ch05 (CPU Scheduling) ...
 
male presentation...pdf.................
male presentation...pdf.................male presentation...pdf.................
male presentation...pdf.................
 
8 Tips for Effective Working Capital Management
8 Tips for Effective Working Capital Management8 Tips for Effective Working Capital Management
8 Tips for Effective Working Capital Management
 
diagnosting testing bsc 2nd sem.pptx....
diagnosting testing bsc 2nd sem.pptx....diagnosting testing bsc 2nd sem.pptx....
diagnosting testing bsc 2nd sem.pptx....
 
Trauma-Informed Leadership - Five Practical Principles
Trauma-Informed Leadership - Five Practical PrinciplesTrauma-Informed Leadership - Five Practical Principles
Trauma-Informed Leadership - Five Practical Principles
 
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdfFICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
 
SPLICE Working Group: Reusable Code Examples
SPLICE Working Group:Reusable Code ExamplesSPLICE Working Group:Reusable Code Examples
SPLICE Working Group: Reusable Code Examples
 
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMDEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
 
Observing-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxObserving-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptx
 
Including Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdfIncluding Mental Health Support in Project Delivery, 14 May.pdf
Including Mental Health Support in Project Delivery, 14 May.pdf
 

Need to make a program using the scanner class that outputs F to C 3.pdf

  • 1. Need to make a program using the scanner class that outputs F to C 32f-212 and 0c-100c. Do i need to use a for loop? Please help thanks A table needs to be made Faren. Celsius -------------------- 32.00 | 0.00 ect | ect 212.00 | 100.00 ----------------------- output should look something like that 2 El import java util. Scanner public class Temp public static void main (String args) Scanner input new Scanner System in) double celsius, fahrenheit; 10 System out print Enter a temperature in Fahrenheit fahrenheit input .next Double 12 celsius (fahrenheit 32) 5 9; 14 System out println. I fahrenheit I celsius "I") for 17 18 20 21 22 23 Output X Tempo (run x Temp (run) #2 x Enter a temperature in Fahrenheit: 32 I 32.0 0.0 I BUILD SUCCESSFUL (total time: 4 seconds Solution package org.students; import java.text.DecimalFormat; import java.util.Scanner; public class FahrenheitToCelsius { public static void main(String[] args) { //Declaring variable double tCelsius; int tFah; //DecimalFormat class is used to format the output DecimalFormat df=new DecimalFormat("#.##"); //Scanner object is used to get the inputs entered by the user Scanner sc=new Scanner(System.in); System.out.print("Enter temperature(in Fahrenheit) :"); tFah=sc.nextInt(); System.out.println(" Faren.|Celsius"); System.out.println("----------------");
  • 2. /* this for loop will convert the Fahrenheit to celsius * and display in tabular format */ for(tFah=32;tFah<=212;tFah++) { tCelsius=(tFah-32)*(5.0/9.0); System.out.println(tFah+" | "+df.format(tCelsius)); } System.out.println("----------------"); } } ___________________ Output: Enter temperature(in Fahrenheit) :32 Faren.|Celsius ---------------- 32 | 0 33 | 0.56 34 | 1.11 35 | 1.67 36 | 2.22 37 | 2.78 38 | 3.33 39 | 3.89 40 | 4.44 41 | 5 42 | 5.56 43 | 6.11 44 | 6.67 45 | 7.22 46 | 7.78 47 | 8.33 48 | 8.89 49 | 9.44 50 | 10
  • 3. 51 | 10.56 52 | 11.11 53 | 11.67 54 | 12.22 55 | 12.78 56 | 13.33 57 | 13.89 58 | 14.44 59 | 15 60 | 15.56 61 | 16.11 62 | 16.67 63 | 17.22 64 | 17.78 65 | 18.33 66 | 18.89 67 | 19.44 68 | 20 69 | 20.56 70 | 21.11 71 | 21.67 72 | 22.22 73 | 22.78 74 | 23.33 75 | 23.89 76 | 24.44 77 | 25 78 | 25.56 79 | 26.11 80 | 26.67 81 | 27.22 82 | 27.78 83 | 28.33 84 | 28.89 85 | 29.44 86 | 30
  • 4. 87 | 30.56 88 | 31.11 89 | 31.67 90 | 32.22 91 | 32.78 92 | 33.33 93 | 33.89 94 | 34.44 95 | 35 96 | 35.56 97 | 36.11 98 | 36.67 99 | 37.22 100 | 37.78 101 | 38.33 102 | 38.89 103 | 39.44 104 | 40 105 | 40.56 106 | 41.11 107 | 41.67 108 | 42.22 109 | 42.78 110 | 43.33 111 | 43.89 112 | 44.44 113 | 45 114 | 45.56 115 | 46.11 116 | 46.67 117 | 47.22 118 | 47.78 119 | 48.33 120 | 48.89 121 | 49.44 122 | 50
  • 5. 123 | 50.56 124 | 51.11 125 | 51.67 126 | 52.22 127 | 52.78 128 | 53.33 129 | 53.89 130 | 54.44 131 | 55 132 | 55.56 133 | 56.11 134 | 56.67 135 | 57.22 136 | 57.78 137 | 58.33 138 | 58.89 139 | 59.44 140 | 60 141 | 60.56 142 | 61.11 143 | 61.67 144 | 62.22 145 | 62.78 146 | 63.33 147 | 63.89 148 | 64.44 149 | 65 150 | 65.56 151 | 66.11 152 | 66.67 153 | 67.22 154 | 67.78 155 | 68.33 156 | 68.89 157 | 69.44 158 | 70
  • 6. 159 | 70.56 160 | 71.11 161 | 71.67 162 | 72.22 163 | 72.78 164 | 73.33 165 | 73.89 166 | 74.44 167 | 75 168 | 75.56 169 | 76.11 170 | 76.67 171 | 77.22 172 | 77.78 173 | 78.33 174 | 78.89 175 | 79.44 176 | 80 177 | 80.56 178 | 81.11 179 | 81.67 180 | 82.22 181 | 82.78 182 | 83.33 183 | 83.89 184 | 84.44 185 | 85 186 | 85.56 187 | 86.11 188 | 86.67 189 | 87.22 190 | 87.78 191 | 88.33 192 | 88.89 193 | 89.44 194 | 90
  • 7. 195 | 90.56 196 | 91.11 197 | 91.67 198 | 92.22 199 | 92.78 200 | 93.33 201 | 93.89 202 | 94.44 203 | 95 204 | 95.56 205 | 96.11 206 | 96.67 207 | 97.22 208 | 97.78 209 | 98.33 210 | 98.89 211 | 99.44 212 | 100 ---------------- ___________Thank You