Skip to content

Conversation

@itsarvindchandel
Copy link

java-program-to-find-smallest-number-in-an-array

java-program-to-find-smallest-number-in-an-array
for (int j = i + 1; j < total; j++)
{
if (a[i] > a[j])
{

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you don't need sorting to find the smallest number just assingn first number to temp and and increment the temp when the a numeber smaller than temp is found and return the value

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants