#include<stdio.h> int main(int argc, char *argv[]){ int result = 0; int i = 0; for(i = 1; i <= 1000; i++){ result += i; } printf("sum of 1 to 1000 : %d\n", result); return 0; }
Screen sharing program made with pure Java This is made pure java. Macbook screen shared in windows desktop. I made this when I was in university student. This is easy and simple to make. If you want to make this program, I can give you my code and I want you to make this better.
Comments
Post a Comment