Hi.. I have a project to do.. but i dont know how to start it..
Basicly i have to make a scientific calculator...
Can anyone help me please? :c-smirk:
1 reply to this topic
#1
Posted 04 January 2011 - 04:21 AM
|
|
|
#2
Posted 04 January 2011 - 10:14 AM
Start by creating a calculation class. List down all the functions you wish your calculator can do as functions:
Do you have to make a Gui?
public class Calculate{
public double sum(double value1, double value2){
return value1+value2;
}
public double divide(double divident, double divisor){
return divident/divisor;
}
.... +, -, *, /, ^, sqrt, sin, cos, tan, mod, log...
}
Do you have to make a Gui?
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account

Back to top









