Application Activity TIC 2
Enviado por pacopandas • 19 de Febrero de 2014 • 632 Palabras (3 Páginas) • 591 Visitas
Application Activity
Elaborate the algorithms of the following problems…
a) Determine the perimeter of a rectangle.
01.- Start
02.- Read the value of the large side, store it in the variable L
03.- Read the value of the width side, store it in the variable W
04.- Calculate the value of the Perimeter with the following operation P = sum of the L times two plus W times two
05.- Write or display the result of the operation, which has stored in the variable P
06.- End
b) Convert any amount from pesos to dollars.
01.- Start
02.- Read the value of the pesos, store it in the variable $
03.- Read the value of the dollars, store it in the variable US$
04.- Calculate the amount of dollars with the following operation Dollars = ($)/(US$)
05.- Write or display the result of the operation, which was stored in the variable Dollars
06.- End
c) Determine the area of a pentagon.
01.- Start
02.- Read the value of Perimeter, store it in the variable P
03.- Read the value of the Apotema, sotre it in the variable A
04.- Calculate the área of the pentagon with the following operation H = [(P)(A)]/2
05.- Write or display the result of the operation, which was stored in the variable H
06.- End
d) Determine the final velocity of an automobile if its initial velocity is zero, its acceleration is 0.8 m/s2 and the elapsed time is 30 seconds.
01.- Start
02.- Read the value of the Initial Velocity, store it in the variable Vi
03.- Read the value of the Acceleration, store it in the variable A
04.- Read the value of the Time, store it in the variable T
05.- Calculate the Final Velocity with the following operation Vf = Vi + (A)(T)
06.- Write or display the result of the operation, which was stores in the variable Vf
07.- End
e) Determine if a person has the right to vote in the elections.
01.- Start
02.- Read the age of the person, store it in the variable Age
03.- If Age = 18 go to step 06 else go to step 04
04.- If Age > 18 then go to step 06 else go to step 05
05.- Display or print ‘‘Not the Right
...