write a program to print the series 1/12+1/22+.........+1/n2 ?
123454321
write a program to print A to Z on screen in c?
There is insufficient information in the question to properly answer it. You did not provide details of which kind of triangle to print. Please restate the question.
echo 'print a pattern'
If you have the series stored in an array, you loop through the array and print each array element in turn. Another possibility is to print out the numbers in the series as you generate them. In that case, you may not need to store anything (depending on the series, of course).
write a shell script to print thi format***************
Is this a homework question?
Reference:cprogramming-bd.com/c_page2.aspx# divisible
Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.
type: PRINT "I like chocalate!"
10 print "That is not a question." 20 print "That is a command." 30 end
Just generate the Fibonacci numbers one by one, and print each number's last digit ie number%10.