programming with array

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • demeke
    New Member
    • Jun 2007
    • 1

    programming with array

    A program which reads a set of numbers from a keyboard and then find out the smallest element.
  • ilikepython
    Recognized Expert Contributor
    • Feb 2007
    • 844

    #2
    Originally posted by demeke
    A program which reads a set of numbers from a keyboard and then find out the smallest element.
    Ok, try it yourself and then post a specific question. Also, read the posting guidelines .

    Comment

    • Extremist
      New Member
      • Jan 2007
      • 94

      #3
      here is a nice place to start
      Code:
      #include <iostream>
      using namespace std;
      
      int main()
      {
              //complete - Let user read a set of numbers from the keyboard
             // Complete - Code for finding the smallest element...
              return 0;
      }
      In short, try it first yourself ;)

      Comment

      Working...