Type Checking In Pascal

11,987

Solution 1

You are actually hitting the I/O type checking. You can work around this by disabling it temporarily and then checking the result:

 {$I-}  //turn off IO checking temporarily
 read(i);
 {$I+}  // and back on

 if ioresult=0 then  // check the result of the last IO operation
   writeln('integer successfully read:',number)
 else
   writeln('invalid input');

Note: the typical answer is often "just read a string and do the conversion yourself", however it is difficult to do that nicely without making assumptions about the terminal type.

For clear and simple programs where you just want somewhat validated input, the above trick (and a loop around it that repeats on error) is enough.

Solution 2

Maybe Val procedure can help you. Here is one for fpc. But change your logic to read into a String and validate it using Val. You can find a sample here.

Solution 3

That 's too easy, see my code below:

program int_check;
uses crt;
var n:real;
begin 
     clrscr;
     write('Enter a number: ');readln(n);
     if n-round(n)=0 then write('Integer!') else write('Not an Integer!');
     readln;
end.

You see, no string, no IOcheck, and fits your form!

Share:
11,987
Radix
Author by

Radix

Updated on June 14, 2022

Comments

  • Radix
    Radix almost 2 years

    I'm just wondering how it's possible to do type checking in pascal? I have been searching for hours now but I haven't been able to find anything useful.

    Example:

    var 
    number: Integer;
    
    begin
      write('Enter a number: ');
      read(number);
    
      if {How am I supposed to check if 'number' is an Integer here?}
      then writeln(number)
      else writeln('Invalid input')
    end.
    
  • Marco van de Voort
    Marco van de Voort about 12 years
    This is not necessarily true. It depends on the state of IO checking, which, admittedly, is on by default in most compilers