Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     int n,e,d,aux,cont;
  7.     n = 2;
  8.     e = 3;
  9.     d = 5;
  10.     cont = 0;
  11.    
  12.     for( aux = 0 ; aux <=60 ; aux +=2)
  13.     {  
  14.         e += aux;
  15.         d += aux;
  16.         printf(" \n %d ^%d / %d \n",n,e,d);
  17.  
  18.        
  19.     }
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement