daily pastebin goal
45%
SHARE
TWEET

Untitled

a guest Dec 26th, 2010 17 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <stdio.h>
  2. #include <math.h>
  3. int main()
  4. {
  5.         int i;
  6. double s=0 ;
  7.         for (i=0; i<=1000; i++)
  8.         {
  9.                 s=s+pow(i,i) ;
  10.                 i=i+1 ;
  11.         }
  12.                                 printf("%f",s);
  13.                                                         return 0;  
  14. }
RAW Paste Data
Top