HP OpenVMS Systems Documentation |
HP BASIC for OpenVMS
|
Previous | Contents | Index |
The QUO$ function returns a numeric string that is the quotient of two numeric strings. The precision of the returned numeric string depends on the value of an integer argument.
- Str-exp1 and str-exp2 specify the numeric strings you want to divide. A numeric string can contain an optional minus sign (--), ASCII digits, and an optional decimal point (.).
- Int-exp specifies the numeric precision of str-exp. Table 3-4 shows examples of rounding and truncation and the values of int-exp that produce them.
- The QUO$ function does not support E-format notation.
- If str-exp consists of more than 60 characters, HP BASIC signals the error "Illegal number" (ERR=52).
- Str-exp is rounded or truncated, or both, according to the value of int-exp.
- If int-exp is from --60 to 60, rounding and truncation occur as follows:
- For positive integer expressions, rounding occurs to the right of the decimal place. For example, if int-exp is 1, rounding occurs one digit to the right of the decimal place (the number is rounded to the nearest tenth). If int-exp is 2, rounding occurs two digits to the right of the decimal place (the number is rounded to the nearest hundredth), and so on.
- If int-exp is zero, HP BASIC rounds to the nearest unit.
- For negative integer expressions, rounding occurs to the left of the decimal point. If int-exp is --1, for example, HP BASIC moves the decimal point one place to the left, then rounds to units. If int-exp is -2, rounding occurs two places to the left of the decimal point; HP BASIC moves the decimal point two places to the left, then rounds to tens.
- If int-exp is from 9940 to 10,060, truncation occurs as follows:
- If int-exp is 10,000, HP BASIC truncates the number at the decimal point.
- If int-exp is greater than 10,000 (10,000 plus n), HP BASIC truncates the numeric string n places to the right of the decimal point. For example, if int-exp is 10,001 (10,000 plus 1), HP BASIC truncates the number starting one place to the right of the decimal point. If int-exp is 10,002 (10,000 plus 2), HP BASIC truncates the number starting two places to the right of the decimal point, and so on.
- If int-exp is less than 10,000 (10,000 minus n), HP BASIC truncates the numeric string n places to the left of the decimal point. For example, if int-exp is 9999 (10,000 minus 1), HP BASIC truncates the number starting one place to the left of the decimal point. If int-exp is 9998 (10,000 minus 2), HP BASIC truncates starting two places to the left of the decimal point, and so on.
- If int-exp is not from --60 to 60 or 9940 to 10,060, HP BASIC returns a value of zero.
- If you specify a floating-point expression for int-exp, HP BASIC truncates it to an integer of the default size.
DECLARE STRING num_str1, & num_str2, & quotient num_str1 = "458996.43" num_str2 = "123222.444" quotient = QUO$(num_str1, num_str2, 2) PRINT quotientOutput
3.72
The RAD$ function converts a specified integer in Radix-50 format to a 3-character string.
The RAD$ function is supported only for compatibility with BASIC-PLUS-2. It is recommended that you do not use the RAD$ function for new program development. |
None
- The RAD$ function does not support E-format notation.
- The RAD$ function converts int-var to a 3-character string in Radix-50 format and stores it in str-var. Radix-50 format allows you to store three characters of data as a 2-byte integer.
- HP BASIC supports the RAD$ function, but not its complement, the FSS$ function.
- If you specify a floating-point variable for int-var, HP BASIC truncates it to an integer of the default size.
DECLARE STRING radix radix = RAD$(999)
The RANDOMIZE statement gives the random number function, RND, a new starting value.
None
- Without the RANDOMIZE statement, successive runs of the same program generate the same random number sequence.
- If you use the RANDOMIZE statement before invoking the RND function, the starting point changes for each run. Therefore, a different random number sequence appears each time.
DECLARE REAL random_num RANDOMIZE FOR I = 1 TO 2 random_num = RND PRINT random_num NEXT IOutput
.379784 .311572
The RCTRLC function disables Ctrl/C trapping.
None
- After HP BASIC executes the RCTRLC function, Ctrl/C typed at the terminal returns you to DCL command level.
- RCTRLC always returns a value of zero.
Y = RCTRLC
The RCTRLO function cancels the effect of Ctrl/O typed on a specified channel.
Chnl-exp must refer to a terminal.
- If you enter Ctrl/O to cancel terminal output, nothing is printed on the specified terminal until your program executes the RCTRLO or until you enter another Ctrl/O, at which time normal terminal output resumes.
- The RCTRLO function always returns a value of zero.
- RCTRLO has no effect if the specified channel is open to a device that does not use the Ctrl/O convention.
PRINT "A" FOR I% = 1% TO 10% Y% = RCTRLO(0%) PRINT "Normal output is resumed"Output
A A A A Ctrl/O Output off Normal output is resumed
The READ statement assigns values from a DATA statement to variables.
Var cannot be a DEF function name, unless the READ statement is inside the multiline DEF body.
- If your program has a READ statement without DATA statements, HP BASIC signals a compile-time error.
- When HP BASIC initializes a program unit, it forms a data sequence of all values in all DATA statements. An internal pointer points to the first value in the sequence.
- When HP BASIC executes a READ statement, it sequentially assigns values from the data sequence to variables in the READ statement variable list. As HP BASIC assigns each value, it advances the internal pointer to the next value.
- HP BASIC signals the error "Out of data" (ERR=57) if there are fewer data elements than READ statements. Extra data elements are ignored.
- The data type of the value must agree with the data type of the variable to which it is assigned or HP BASIC signals "Data format error" (ERR=50).
- If you read a string variable, and the DATA element is an unquoted string, HP BASIC ignores leading and trailing spaces. If the DATA element contains any commas, they must be inside quotation marks.
- HP BASIC evaluates subscript expressions in the variable list after it assigns a value to the preceding variable, and before it assigns a value to the subscripted variable. In the following example, HP BASIC assigns the value of 10 to variable A, then assigns the string, LESTER, to array element A$(A).
READ A, A$(A) . . . DATA 10, LESTER
The string, LESTER, is assigned to A$(10).
DECLARE STRING A,B,C READ A,B,C DATA "X", "Y", "Z" PRINT A + B + COutput
XYZ
The REAL function converts a numeric expression or numeric string to a specified or default floating-point data type.
Exp can be either numeric or string. If a string, it can contain the ASCII digits 0 to 9, uppercase E, a plus sign (+), a minus sign (--), and a period (.).
- HP BASIC evaluates exp, then converts it to the specified REAL size. If you do not specify a size, HP BASIC uses the default REAL size.
- HP BASIC ignores leading and trailing spaces and tabs if exp is a string.
- The REAL function returns a value of zero when a string argument contains only spaces and tabs, or when the argument is null.
- Alpha BASIC does not support the HFLOAT floating-point data type.
DECLARE STRING any_num INPUT "Enter a number";any_num PRINT REAL(any_num, DOUBLE)Output
Enter a number? 123095959 .123096E+09
The RECORD statement lets you name and define data structures in a BASIC program and provides the HP BASIC interface to Oracle CDD/Repository. You can use the defined RECORD name anywhere a BASIC data type keyword is valid if all data types are valid in that context.
- Each line of text in a RECORD, GROUP, or VARIANT block can have an optional line number.
- Data-type can be a BASIC data type keyword or a previously defined RECORD name. Table 1-2 lists and describes BASIC data type keywords.
- If the data type of a rec-item is STRING, the string is fixed-length. You can supply an optional string length with the = int-const clause. If you do not specify a string length, the default is 16.
- When you create an array of components with GROUP or create an array as a rec-item, HP BASIC allows you to specify both lower and upper bounds. The upper bounds is required; the lower bounds is optional.
- Int-const1 specifies the lower bounds of the array.
- Int-const2 specifies the upper bounds of the array and when accompanied by int-const1, must be preceded by the keyword TO.
- Int-const1 must be less than or equal to int-const2.
- If you do not specify int-const1, HP BASIC uses zero as the default lower bounds.
- The total size of a RECORD cannot exceed 65,535 bytes. Also, a RECORD that is used as an array component is limited to 32,767 bytes.
- The declarations between the RECORD statement and the END RECORD statement are called a RECORD block.
- Variables and arrays in a RECORD definition are also called RECORD components.
- There must be at least one rec-component in a RECORD block.
- The RECORD statement names and defines a data structure called a RECORD template, but does not allocate any storage. When you use the RECORD template as a data type in a statement such as DECLARE, MAP,
or COMMON, you declare a RECORD instance. This declaration of the RECORD instance allocates storage for the RECORD. For example:
DECLARE EMPLOYEE emp_rec
This statement declares a variable named emp_rec, which is an instance of the user-defined data type EMPLOYEE.- Rec-item
- The rec-name qualifies the group-name and the group-name qualifies the rec-item. You can access a particular rec-item within a record by specifying rec-name::group-name::rec-item. This specification is called a fully qualified reference. The full qualification of a rec-item is also called a component path name.
- Rec-item must conform to the rules for naming HP BASIC variables.
- Whenever you access an elementary record component, that is, a variable named in a RECORD definition, you do it in the context of the record instance; therefore, rec-item names need not be unique in your program. For example, you can have a variable called first_name in any number of different RECORD definitions. However, you cannot use a BASIC reserved keyword as a rec-item name and you cannot have two variables or arrays with the same name at the same level in the RECORD or GROUP definition.
- The group-name is optional in a rec-item specification unless there is more than one rec-item with the same name or the group-name has subscripts. For example:
DECLARE EMPLOYEE Emp_rec . . . RECORD Address STRING Street, City, State, Zip END RECORD Address RECORD Employee GROUP Emp_name STRING First = 15 STRING Middle = 1 STRING Last = 15 END GROUP Emp_name ADDRESS Work ADDRESS Home END RECORD Employee
You can access the rec-item "Last" by specifying only "Emp_rec::Last" because only one rec-item is named "Last"; however, if you try to reference "Emp_rec::City", HP BASIC signals an error because "City" is an ambiguous field. "City" is a component of both "Work" and "Home"; to access it, either "Emp_rec::Work::City" or "Emp_rec::Home::City" must be specified.- Group-clause
- The declarations between the GROUP keyword and the END GROUP keyword are called a GROUP block. The GROUP keyword is valid only within a RECORD block.
- A subscripted group is similar to an array within the record. The group can have both lower and upper bounds for one or more dimensions. Each group element consists of all the record items contained within the subscripted group including other groups.
- Variant-clause
- The declarations between the VARIANT keyword and the END VARIANT keywords are called a VARIANT block.
- The amount of space allocated for a VARIANT field in a RECORD is equal to the space needed for the variant field requiring the most storage.
- A variant defines the record items that overlay other items, allowing you to redefine the same storage one or more ways.
- Case-clause
- Each case in a variant starts at the position in the record where the variant begins.
- The size of a variant is the size of the longest case in that variant.
1000 RECORD Employee GROUP Emp_name STRING Last = 15 STRING First = 14 STRING Middle = 1 END GROUP Emp_name GROUP Emp_address STRING Street = 15 STRING City = 20 STRING State = 2 DECIMAL(5,0) Zip END GROUP Emp_address STRING Wage_class = 2 VARIANT CASE GROUP Hourly DECIMAL(4,2) Hourly_wage SINGLE Regular_pay_ytd SINGLE Overtime_pay_ytd END GROUP Hourly CASE GROUP Salaried DECIMAL(7,2) Yearly_salary SINGLE Pay_ytd END GROUP Salaried CASE GROUP Executive DECIMAL(8,2) Yearly_salary SINGLE Pay_ytd SINGLE Expenses_ytd END GROUP Executive END VARIANT END RECORD Employee
The RECOUNT function returns the number of characters transferred by the last input operation.
None
- The RECOUNT value is reset by every input operation on any channel, including channel #0.
- After an input operation from your terminal, RECOUNT contains the number of characters (bytes), including line terminators, transferred.
- After accessing a file record, RECOUNT contains the number of characters in the record.
- Because RECOUNT is reset by every input operation on any channel, you should copy the RECOUNT value to a different storage location before executing another input operation.
- If an error occurs during an input operation, the value of RECOUNT is undefined.
- RECOUNT is unreliable after a Ctrl/C interrupt because the Ctrl/C trap may have occurred before HP BASIC set the value for RECOUNT.
- The RECOUNT function returns a LONG value.
DECLARE INTEGER character_count INPUT "Enter a sequence of numeric characters";character_count character_count = RECOUNT PRINT character_count;"characters received (including CR and LF)"Output
Enter a sequence of numeric characters? 12345678 10 characters received (including CR and LF)
The REM statement allows you to document your program.
- REM must be the only statement on the line or the last statement on a multistatement line.
- HP BASIC interprets every character between the keyword REM and the next line number as part of the comment.
- HP BASIC does not allow you to specify the REM statement in programs that do not contain line numbers.
- Because the REM statement is not executable, you can place it anywhere in a program, except where other statements, such as SUB and END SUB, must be the first or last statement in a program unit.
- When the REM statement is the first statement on a line-numbered line, HP BASIC treats any reference to that line number as a reference to the next higher-numbered executable statement.
- The REM statement is similar to the comment field that begins with an exclamation point, with one exception: the REM statement must be the last statement on a BASIC line. The exclamation point comment field can be ended with another exclamation point or a line terminator and followed by a BASIC statement. See Chapter 1 for more information about the comment field.
10 REM This is a multiline comment All text up to BASIC line 20 is part of this REM statement. Any BASIC statements on line 10 are ignored. PRINT "This does not execute". 20 PRINT "This will execute"Output
This will execute
Previous | Next | Contents | Index |