#include <stdio.h> int main() { int a; for(a=0; a<=20; a++) { printf("%2d^2 = %3d\n", a, a*a); //2 e 3 spaziature nel output } }
To embed this project on your website, copy the following code and paste it into your website's HTML: