14.7k views
4 votes
I'm really weak at computers can someone please help me with these questions ​

I'm really weak at computers can someone please help me with these questions ​-example-1
User AnR
by
9.0k points

1 Answer

4 votes

Answer:

DIM count, number, previous, temp AS INTEGER

count = 0

number = 1

previous = 1

again:

count = count + 1

temp = number

number = number + previous

previous = temp

PRINT number

IF count < 10 THEN

GOTO again

END IF

Step-by-step explanation:

Here is the code for the first assignment. Can you think about the rest indicate where you get stuck?

User Poyraz Yilmaz
by
7.7k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.