mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 21:29:41 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			205 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			205 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example7;
 | |
| 
 | |
| { Program to demonstrate the Ceil function. }
 | |
| 
 | |
| Uses math;
 | |
| 
 | |
| begin
 | |
|   Writeln(Ceil(-3.7)); // should be -3
 | |
|   Writeln(Ceil(3.7));  // should be 4
 | |
|   Writeln(Ceil(-4.0)); // should be -4
 | |
| end.
 | 
