this post was submitted on 16 Jul 2023
1608 points (96.6% liked)

Memes

45581 readers
1 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 6 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] only_lurking@lemmy.world 1 points 2 years ago

I think it would be much better to write it in another language, but here's another way to do the second one (this is on Visual Basic):

Dim n as long
Dim product as long
Product = 1

For n = 1 to 4
Product = product * 2 * n
Next n