this post was submitted on 27 Jun 2024
6 points (75.0% liked)

Homework Help

13 readers
1 users here now

Welcome to the Homework Help community on Lemmy.World!

The objective of this community is to connect those who need help with their school work with those who can assist with answers. Ask for help with your homework here.

Before asking:

[Grade 8 Math: Quadratic Equations] How to factorise ax^2^ + bx + c?

[University Chemistry: Titration] What is my qs?

[AS Level English: Essay Writing] Should all adverts be factual?

Before answering:

Bannable offenses:

  1. We will not facilitate cheating, plagiarism or otherwise violate academic integrity.

  2. Do not solicit paid service, either as a buyer or a seller of said service.

  3. No advertising of any kind. No spam.

  4. Don't be an asshole: No bigotry of any kind, no personal attacks, be reasonable, and remember the human on the other side of the screen.

founded 8 months ago
MODERATORS
 

I'm not looking for answers. Just directions on what keywords for lectures on the topic. I can find CS stuff when looking, but that feels too esoteric for high school geometry?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] slazer2au 4 points 4 months ago (1 children)

X and Y are not geometry in this instance. They are variables.

As an example if X is 5 and Y is 10, when reading line 30 the code will be False and the program will do the next step of running line 40. Now, as X (5) is less than Y (10) the statement is True and the THAN operation is executed, which will skip straight to line 70. Finally in the console of this script/app the program will write out the variables of X and Y then finally it will close.

[โ€“] [email protected] 2 points 4 months ago

Since the exercise doesn't explain it very well, maybe should also note that in:

10 INPUT X
20 INPUT Y
...

The "10" and "20" etc. are just the line numbers. The lines are numbered in steps of 10 for historic reasons. So, the actual content of the line is just INPUT X and INPUT Y etc..