mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 05:39:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			231 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			231 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example74;
 | 
						|
 | 
						|
{ This program demonstrates the IntToStr function }
 | 
						|
 | 
						|
Uses sysutils;
 | 
						|
 | 
						|
Var I : longint;
 | 
						|
 | 
						|
Begin
 | 
						|
  For I:=0 to 31 do
 | 
						|
      begin
 | 
						|
      Writeln (IntToStr(1 shl I));
 | 
						|
      Writeln (IntToStr(15 shl I));
 | 
						|
      end;
 | 
						|
End. |