Ambi Raj

Greenhorn
+ Follow
since Feb 12, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Ambi Raj

Mary,
I agree with Matt that it is infinitely better to have an algorithm beforehand. As I see it, you need to use the for loop as part of your exercise. So your psuedocode would be something like this.
int celsius;
for(celsius=42;celsius>31;celsius--)
{
double result= celsiusToFaren(celsius);
display(result)
}
Obviously, you will need to write the definitions of the
methods for "celciusToFaren" and "display".
Hope this helps
Ambi
23 years ago