0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
public class WholeNumberSum { public static void main(String args[]){ int num,sum=0,i=1; while(i<1000) { sum=sum+i; i++; } System.out.print(sum); } }
The End.
kikovi