You can create a release to package software, along with release notes and links to binary files, for other people to use. Learn more about releases in our docs.
GitHub

sum-of-odd-numbers

Program to display sum of odd numbers from 1-100 Java.txt public class SumOfOddNumbers { public static void main(String[] args) { int sum = 0; for (int i = 1; i ...