Jump to content

Pangram checker: Difference between revisions

m
fix bare lang tags
m (fix bare lang tags)
Line 290:
 
return 0;
}</lang>output<lang>yes: The quick brown fox jumps over lazy dogs.
<pre>yes: The quick brown fox jumps over lazy dogs.
no : The five boxing wizards dump quickly.</langpre>
 
=={{header|C sharp|C#}}==
Line 557 ⟶ 558:
end program test</lang>
Output:
<langpre>This is a sentence.
F
The five boxing wizards jumped quickly.
T</langpre>
=={{header|Go}}==
<lang go>package main
Line 993 ⟶ 994:
Output:
 
<langpre>
Please type a sentence
 
the quick brown fox jumps over the lazy dog
The sentence is a pangram.
</langpre>
 
=={{header|Prolog}}==
Line 1,017 ⟶ 1,018:
</lang>
output
<langpre>?- pangram_example.
the quick brown fox jumps over the lazy dog --> ok
the quick brown fox jumped over the lazy dog --> ko
true.</langpre>
 
=={{header|PureBasic}}==
Line 1,086 ⟶ 1,087:
 
Sample output:
<langpre>s1 <- "The quick brown fox jumps over the lazy dog"
s2 <- "The quick brown fox jumps over the sluggish dog"
checkPangram(s1)
Line 1,092 ⟶ 1,093:
checkPangram(s2)
"The quick brown fox jumps over the sluggish dog" is not a pangram!
</langpre>
 
=={{header|Retro}}==
Cookies help us deliver our services. By using our services, you agree to our use of cookies.