Jump to content

ABC words: Difference between revisions

1,796 bytes added ,  3 years ago
Ada version
m (Minor edit to Java code)
(Ada version)
Line 12:
{{Template:Strings}}
<br><br>
 
=={{header|Ada}}==
<lang Ada>with Ada.Text_Io;
with Ada.Strings.Fixed;
 
procedure Abc_Words is
use Ada.Text_Io;
 
function Is_Abc_Word (Word : String) return Boolean is
use Ada.Strings.Fixed;
Pos_A : constant Natural := Index (Word, "a");
Pos_B : constant Natural := Index (Word, "b");
Pos_C : constant Natural := Index (Word, "c");
begin
return
Pos_B > Pos_A and Pos_C > Pos_B and
Pos_A /= 0 and Pos_B /= 0 and Pos_C /= 0;
end Is_Abc_Word;
 
Filename : constant String := "unixdict.txt";
File : File_Type;
Column : Ada.Text_Io.Count := 0;
begin
Open (File, In_File, Filename);
while not End_Of_File (File) loop
declare
Word : constant String := Get_Line (File);
begin
if Is_Abc_Word (Word) then
Set_Col (1 + Column);
Column := (Column + 15) mod 120;
Put (Word);
end if;
end;
end loop;
Close (File);
end Abc_Words;</lang>
{{out}}
<pre>aback abacus abc abdicate abduct abeyance abject abreact
abscess abscissa abscissae absence abstract abstracter abstractor adiabatic
aerobacter aerobic albacore alberich albrecht algebraic alphabetic ambiance
ambuscade aminobenzoic anaerobic arabic athabascan auerbach diabetic diabolic
drawback fabric fabricate flashback halfback iambic lampblack leatherback
metabolic nabisco paperback parabolic playback prefabricate quarterback razorback
roadblock sabbatical snapback strabismic syllabic tabernacle tablecloth</pre>
 
=={{header|ALGOL 68}}==
<lang algol68># find words that have "a", "b" and "C" in order in them #
211

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.