mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 06:52:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			259 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			259 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example70;
 | |
| 
 | |
| { Program to demonstrate the Trunc function. }
 | |
| 
 | |
| begin
 | |
|   Writeln (Trunc(123.456));  { Prints 123  }
 | |
|   Writeln (Trunc(-123.456)); { Prints -123 }
 | |
|   Writeln (Trunc(12.3456));  { Prints 12   }
 | |
|   Writeln (Trunc(-12.3456)); { Prints -12  }
 | |
| end.
 | 
