#include <stdio.h>
int main (void) { puts ("1 22 333 4444 55555"); return 0; }
Chat with our AI personalities
1 12 123 1234 12345
12345 1234 123 12 1
write a program to print the series 1/12+1/22+.........+1/n2 ?
// example of 1..12x12 table for($i = 1; $i <= 12; $i++) { for($j = 1; $j <= 12; $j++) { print ($i * $j) ." "; } print "\n"; }
====== FOR tablesNo%=1 TO 12 CLS PRINT "PROGRAM: "; tablesNo%; "X Tables:-" PRINT FOR timesNo%=1 TO 12 PRINT timesNo%; " X "; tablesNo%; " = "; timesNo%*tablesNo% NEXT PRINT PRINT "Press [SPACEBAR] key to continue..." SLEEP NEXT END