User:Matttest/sandbox2: Difference between revisions

m
Reverted edits by Kiko4564 (talk) to last revision by Matttest
No edit summary
Tag: Reverted
m (Reverted edits by Kiko4564 (talk) to last revision by Matttest)
Tag: Rollback
 
Line 1:
This is a non-official sandbox page, although the original [[Sandbox]] page is not official too...
a jks;dfnklz;cklxzknl
 
a ds;adfs ;`
Test here freely! Don't need to care about whether editing under/below/up/down/over/… any lines. Or just delete the whole page, cover this page with 'webfjhwgfhh', clearing all words or do whatever you like to this page. Of course, as other users can do this too, your edit can always be reverted at any time.
 
'''Warning: Please don’t violate the [[TestWiki:Edit warring|the edit war policy]].'''
 
<syntaxhighlight lang="pascal" line="1">
//This program is for finding HCF for pascal
//You may delete it if you want as this page is a sandbox
//Complete the quiz below by replacing ??? to codes
program hcf;
var a,b,i:longint;
begin
writeln('The two numbers you want to find for HCF: ');readln(a,b);
while(a<>b)do
begin
if(a>b)then ???;
else b:=???;
end;
writeln('HCF: ', ???);
end.
</syntaxhighlight>
415

edits