Post Reply 
INPUT question
05-30-2014, 02:20 AM
Post: #1
INPUT question
I am working a tutorial for the improved INPUT command (at least the basics of it). I have the following program that calculates sin(2A)^2:

Code:
EXPORT IN5()
BEGIN
// Checkbox: Angle Mode
INPUT({{M,1}},"Check for Degrees");
HAngle:=M;
// Ask for Angle
INPUT(A,"Angle");
// Results
PRINT();
PRINT("SIN(2A)^2");
PRINT(SIN(2*A)^2);
END;

The program IN5 works the way it is, but is there a way to combine two (or more) input types?
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
INPUT question - Eddie W. Shore - 05-30-2014 02:20 AM
RE: INPUT question - Mic - 05-30-2014, 05:24 AM
RE: INPUT question - Eddie W. Shore - 05-30-2014, 12:05 PM
RE: INPUT question - Tim Wessman - 06-02-2014, 02:12 PM
RE: INPUT question - acmeanvil - 05-30-2014, 02:11 PM
RE: INPUT question - Eddie W. Shore - 05-31-2014, 03:22 AM
RE: INPUT question - rprosperi - 05-31-2014, 07:17 PM
RE: INPUT question - Mark Hardman - 06-02-2014, 09:01 PM
RE: INPUT question - Bob Frazee - 05-31-2014, 02:11 AM
RE: INPUT question - Dougggg - 06-02-2014, 05:00 PM
RE: INPUT question - Eddie W. Shore - 06-02-2014, 07:34 PM
RE: INPUT question - Mark Hardman - 06-02-2014, 10:30 PM
RE: INPUT question - slawek39 - 07-13-2014, 12:21 PM
RE: INPUT question - Giancarlo - 07-26-2014, 02:06 PM
RE: INPUT question - Giancarlo - 07-26-2014, 02:22 PM
RE: INPUT question - Giancarlo - 07-26-2014, 02:40 PM



User(s) browsing this thread: 1 Guest(s)