954,498 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Pseudocode for area and diameter of circle

<< split from here >>

I need help writing a pseuocode for the following statement:

pseudocode that represents the logic of a program that allows a user to enter a value for the radius of a circle and then provides the user with a choice between printing either the diameter or the circumference of the circle. Based on the user’s choice, the program should calculate the appropriate dimension and display the result. To calculate the diameter, multiply the radius by 2 and to calculate the circumference multiply the diameter by 3.14.

beverlyjojohnso
Newbie Poster
1 post since Jan 2007
Reputation Points: 9
Solved Threads: 0
 

Did you read what Dani (cscgal) said? She actually explained pseudocode pretty well.

Also, did you read this announcement?
http://www.daniweb.com/techtalkforums/announcement8-2.html

Show us how far you've gotten. We aren't here just to do other people's homework.

John A
Vampirical Lurker
Team Colleague
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
 

EDIT: So embarrassing I won't even mention what I'm editing.

fesago90
Newbie Poster
21 posts since Jan 2007
Reputation Points: 10
Solved Threads: 1
 

>>I think I will have to use a formula that will divide the number of seconds into hours, seconds into minutes, and the remainder will be seconds.

Yup, pretty close. You can use division, modulo, and/or subtraction in sequence to do what is needed.

NumberOfHours is InputSeconds divided by NumberOfSecondsInHour. Since this will be integer division there won't be any decimal point remainder.

After determining NumberOfHours, then you can determine the remaining seconds as follows: RemainingSeconds equals the remainder of InputSeconds divided by NumberOfSecondInHour (in C and C++ the remainder of a division involving two int variables can be obtained by using the modulo operator. So if num = 5 % 2, then num equals 1 since 1 is the remainder of 5 divided by 2) OR, if you don't want to use the modulo operator you could use RemainingSeconds equals InputSeconds minus the product of NumberOfHours times NumberOfSecondsInHour.

You can do a similar type formula for determining number of minutes.

Lerner
Nearly a Posting Maven
2,382 posts since Jul 2005
Reputation Points: 739
Solved Threads: 396
 

(thread is from 2004)

fesago90
Newbie Poster
21 posts since Jan 2007
Reputation Points: 10
Solved Threads: 1
 

help me write psydo code for circle

kommissioner1
Newbie Poster
1 post since Sep 2010
Reputation Points: 8
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You