SHARE
TWEET
Untitled
a guest
Dec 26th, 2010
17
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- #include <stdio.h>
- #include <math.h>
- int main()
- {
- int i;
- double s=0 ;
- for (i=0; i<=1000; i++)
- {
- s=s+pow(i,i) ;
- i=i+1 ;
- }
- printf("%f",s);
- return 0;
- }
RAW Paste Data
