matt gilbert

Greenhorn
+ Follow
since Jun 17, 2003
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 matt gilbert

can you pass formal arguments to methods and constructors. or just one of them.
20 years ago
do the variables size, metal and cost exist only in the scope of the getPot method?
20 years ago
public class CookPot
{
Private int capacity, material, price;
Public void getPot (int size, int metal ,int cost)
{
size=capacity;
metal=material;
cost=price;
}
}
This code is just not working they way I want it to. I think it has something to do with the variables capacity, material, price and the way they are defined.
20 years ago
I read the math class. Is the Math class the same as math method? do you get a NA when you try to pass a non number?
20 years ago
Math Method?
Dose any know where I can get some info on Math Methods? What is returned if you try to pass an argument that is not a number?
20 years ago