Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2. #include <conio.h>
  3. //arickanjass.blogspot.com
  4. //author: arick anjasmara
  5.  
  6. main()
  7. {
  8.     int a,b,c,d;
  9.    
  10.     for (a = 2;a<=10;a+=2)
  11.     {      
  12.     b = 0; 
  13.         for (b;b<=40;b+=10)
  14.         {
  15.             c = a + b;
  16.             d = c * c;
  17.             printf ("%d * %d = %d\t",c,c,d);
  18.         }
  19.     }
  20. getch();
  21. };