Search This Blog

Saturday, 15 March 2025

Practical No.2: W.A.P. to calculate the SQUARE and CUBE of first ten natural numbers - Computer Studies For Class IX (Arts /General /Humanities Group)

Go To Index
Computer Studies
Practical
Class IX (Arts /General /Humanities Group)

Practical No. 2: Write a program to calculate the SQUARE and CUBE of 1st ten Natural Numbers.
PROGRAM:

10 CLS
20 PRINT “NUMBERS”, “SQUARE”, “CUBE”
30 PRINT “~~~~~~~~~”, “~~~~~~~~”, “~~~~”
40 FOR N = 1 TO 10
50 PRINT N, N^2, N^3
60 NEXT N
70 PRINT STRING$(35, “~”)
80 END
RUN


OR

10 REM CALCULATE SQUARE AND CUBE OF FIRST TEN NATURAL NUMBERS
20 CLS
30 PRINT TAB(5) "NUMBERS", "SQUARES", "CUBE"
40 FOR N = 1 TO 10
50 LET S = N^2
60 LET C = N^3
70 PRINT TAB(5) N, S, C
80 NEXT N
90 END

OUTPUT
NUMBERSQUARESCUBE
111
248
3927
41664
525125
636216
749343
864512
981729
101001000


No comments:

Post a Comment