Find square difference: Difference between revisions

Content deleted Content added
PureFox (talk | contribs)
m →‎{{header|Wren}}: Changed to Wren S/H
J7M (talk | contribs)
Add SmallBASIC
 
Line 417:
print fpow(1001)</syntaxhighlight>
 
==={{header|SmallBASIC}}===
<syntaxhighlight lang="qbasic">
While n^2 - (n-1)^2 < 1000 do n++
print n
</syntaxhighlight>
 
==={{header|True BASIC}}===