When running the command seq 1 5 20 in bash, the result is 1 6 11 16 all on different lines. Try this problem in bash to get the correct result. There is a problem with this question.
The reason why is because it's incrementing by 5 each time until it's told to stop.
starts with 1
1+5 = 6
6 + 5 = 11
11 + 5 = 16
If you add 5 again that's 21 and the sequence only should go to 20, so we stop here.
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
mallorysmith64
2 years, 8 months agomallorysmith64
2 years, 8 months agodontone_covidone
4 years, 2 months ago3glag
4 years, 11 months ago