Results 1 to 2 of 2

Thread: ถามเรื่อง Array หน่อยดิครับ

  1. #1
    KYO_IN_KMITNB
    Guest


    ถามเรื่อง Array หน่อยดิครับ

    ถ้าเราส่งค่า Array ไปเก็บไปเก็บไว้ใน size แล้วเวลาให้มันแสดงผลให้แสดงค่าที่มากที่สุดค่เดียวพอ ไม่ทราบว่าจะทำไงอ่ะครับ

  2. #2
    Senior Member newsbot's Avatar
    Join Date
    Sep 2002
    Location
    Thailand
    Posts
    3,766


    Re: ถามเรื่อง Array หน่อยดิครับ

    use this function

    [src]
    int max(int arr[],int size )
    {
    int max=arr[0];
    for(int i=0;i<size;i++)
    {
    if(arr[i]>max) max=arr[i];
    }

    return max;
    }



    [/src]
    clone 'em all

Similar Threads

  1. Replies: 5
    Last Post: 08-06-2009, 11:51 PM
  2. Replies: 0
    Last Post: 16-09-2004, 02:11 AM
  3. Replies: 1
    Last Post: 16-12-2003, 06:50 PM
  4. Replies: 0
    Last Post: 25-11-2003, 07:55 PM
  5. ถามเรื่อง IP ที่มจธ.
    By p_na024 in forum Operating System, Server and Networking
    Replies: 1
    Last Post: 05-02-2003, 05:09 PM

Members who have read this thread : 0

Actions : (View-Readers)

There are no names to display.

Members who have read this thread: 0

There are no members to list at the moment.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •