Объяснение:
No or not?
Grammar > Easily confused words > No or not?
из English Grammar Today
No and not are the two most common words we use to indicate negation. We use no before a noun phrase:
There’s no address on the envelope.
[parent to child]
No biscuits before dinner!
No decisions have been made.
We use not with any other phrase or clause:
It’s not often that you stop and think about the way you breathe.
Not suitable for children under 15.
Not surprisingly, it was a tense match but eventually the more experienced Australians won.
A:
Do you go cycling all year round?
B:
Not in the winter.
var
k,n,i,j:longint;
mas:array[1..10000] of longint;
begin
read(n);
for i:=1 to 10000 do
mas[i]:=0;
mas[10000]:=1;
for j:=1 to n do
begin
for i:=1 to 10000 do
mas[i]:=mas[i]*j;
for i:=10000 downto 2 do
begin
mas[i-1]:=mas[i-1]+mas[i]div 10;
mas[i]:=mas[i]mod 10;
end;
end;
i:=1;
while mas[i]=0 do
i:=i+1;
for j:=i to 10000 do
write(mas[j])
end.