: pls someone help me with this assignment,
: a program in pascal that will print prime numbers between
: 1 and 100.
: pls somone help fast
: breaktrough
I won't write the whole thing for you, but this is a start:
Begin
WriteLn('2');
WriteLn('3');
WriteLn('5');
WriteLn('7');
WriteLn('11');
WriteLn('13');
{...}
End.
You could also use an equation to do this so that you don't need to figure them all out manually. If you want to try that method, give it a go and then post where you get stuck and we'll help.