Computer Science, asked by krishna81376, 12 hours ago

CLS
FOR K=10 to 2 STEP - 2
PRINT K
Next K 
END ​

Answers

Answered by sushilkumar5213822
0

Explanation:

5 is answer right and questions is very good

Answered by balsaniyakhadija
0

Answer:

[SLC 2065 S]

DECLARE FUNCTION Interest (p,t,r)

CLS

LET p = 30

LET t = 40

LET r = 6

LET d = Interest (p, t, r)

PRINT “The simple interest will be”; d

END

FUNCTION Interest (p, t, r)

answer= (p*t*r) /100

Interest=answer

END FUNCTION

Output:

The simple interest will be 72

Explanation:

I Hope it's helpful.

plz mark me as a brainlist.

Similar questions