main(){
int temp,prev,i;
for(i=2,prev=1;prev<=256;i++){
printf("%d ",prev);
temp=i;
i=i*prev;
prev=temp;
}
}
write a program to print the series 1/12+1/22+.........+1/n2 ?
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.
// example of 1..12x12 table for($i = 1; $i <= 12; $i++) { for($j = 1; $j <= 12; $j++) { print ($i * $j) ." "; } print "\n"; }
for (int i=0; i<3; ++i) printf ("1 1 0 "); printf("1\n");
CLS a = 0 b = 0 FOR i = 1 TO 10 IF a = 0 THEN f = 1 END IF PRINT f b = a a = f f = a + b NEXT i END from : Parth jani parthjani7@yahoo.com
write a program to print the series 1/12+1/22+.........+1/n2 ?
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.
Write a c program to print the 100 to 1 nos
// example of 1..12x12 table for($i = 1; $i <= 12; $i++) { for($j = 1; $j <= 12; $j++) { print ($i * $j) ." "; } print "\n"; }
Cls print the multiples tables of 1 to 5 for x=1 to 5 for y=1 to 10 print x;"*";y;"=";x*y next y print print next x end
10 rem for next 20 for i=10 to 1 step -1 30 ? I^2; 40 next i 50 end
hi question is here, 1 1 2 1 2 3 1 2 3 4
With a nested loop this is fairly simple. Example, in Java: for (int i = 1; i
int main() { for(int i = 1; i
Program to print one & zero Alternatively#include#includevoid main(){int i,j,n,k=1;clrscr();printf("Enter the Iteration Value : ");scanf("%d",&n);for(i=1;i
for (int i=0; i<3; ++i) printf ("1 1 0 "); printf("1\n");
Oh, what a lovely request! In FoxPro, you can create a program to print all prime numbers from 1 to 100 by using a loop to check each number for divisibility only by 1 and itself. If it meets this criteria, you can print it out on the screen. Remember, every number is unique and special, just like a happy little tree in a vast forest.