mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 11:59:41 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			162 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			162 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example9;
 | 
						|
 | 
						|
{ Program to demonstrate the cotan function. }
 | 
						|
 | 
						|
Uses math;
 | 
						|
 | 
						|
begin
 | 
						|
  writeln(cotan(pi/2));
 | 
						|
  Writeln(cotan(pi/3));
 | 
						|
  Writeln(cotan(pi/4));
 | 
						|
end.
 |