help required in identifying the error
in
Programming Questions
•
2 months ago
i am a beginner in processing and need some help regarding my problem regarding the following code:
void setup() {
float currency = currencyConverter();
println(dollar);
}
float currencyConverter(float rupee){
float dollar = float rupee*102;
return dollar;
}
i am trying to make a currency convertor, still getting an error.
stuck on this for more than a week.
really need help guys...
1