Skip to main content

URI Online Judge Solution 1143 Squared and Cubic


URI Online Judge Solution 1143 Squared and Cubic using C Programming Language.
Write a program that reads an integer N (1 < N < 1000). This N is the number of output lines printed by this program.

Input

The input file contains an integer N.

Output

Print the output according to the given example.
Input SampleOutput Sample
5
1 1 1
2 4 8
3 9 27
4 16 64
5 25 125

Solution using C :

#include <stdio.h>
int main() {
   int n,i;
    scanf("%d",&n);
    for(i=1; i<=n; i++)
    {
        printf("%d %d %d\n",i,i*i,i*i*i);
    }
    return 0;
}

Comments