Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program in Ruby to convert a character representation of a non-negative real number to a double value without using the string-to-double conversions, must

Write a program in Ruby to convert a character representation of a non-negative real number to a double value without using the string-to-double conversions, must do a character-by-character conversion. Basically turn this C++ psudocode into Ruby Code

Token scan_real(char *line, int lookahead) /* scan a real number from input */

{

int pos = lookahead; /* remember start of number */

if (isdigit(line[lookahead])) { /* move from state 1 to state 2 */

while (isdigit(line[++lookahead])) /* stay in state 2 */

;

if (line[lookahead] = = .) { /* move to state 3 */

while (isdigit(line[++lookahead])) /* stay in state 3 */

;

strcpy(token.symbol, line + pos, lookahead pos); /* copy number to token */

}

else

printf(Syntax error: real number doesnt end with decimal point );

}

else if (line[lookahead] = = .) { /* move from state 1 to state 4 */

if (isdigit(line[++lookahead])) /* move from state 4 to state 5 */

same as state 3 above /* stay in state 5 */

else

printf(Syntax error: decimal point must be preceded or followed by digits);

}

else

printf(Syntax error: expected number, found %c , line[lookahead]);

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MongoDB Applied Design Patterns Practical Use Cases With The Leading NoSQL Database

Authors: Rick Copeland

1st Edition

1449340040, 978-1449340049

More Books

Students also viewed these Databases questions