[討論]大一資工系求解

作者: apple09391 (YJY)   2016-11-17 00:33:22
Write a program that reads n integer numbers and show the larget and smallest
numbers. Input n: 5 Input 5 numbers: 22 56 74 66 32 The largest number is 74.
The smallest number is 22. Hint: Refer to the following code.
#include <stdio.h>
#define SIZE 100
int main(void)
{
int i, a[SIZE] = {0}; printf("Input numbers: ");
scanf("%d", &a[0]);
printf("The largest number is %d.\n", a[0]); printf("The smallest number is %d
.\n", a[0]);
}
作者: mars90226 (火星人)   2016-11-17 02:30:00
所以你是想要答案嗎? 何不說一下想法?
作者: apple09391 (YJY)   2016-11-17 09:33:00
這是我目前打的求正解
作者: suhorng ( )   2016-11-17 11:03:00
錯板, 請到其他板發問
作者: apple09391 (YJY)   2016-11-17 11:09:00
那請問一下該去哪一版求解
作者: mars90226 (火星人)   2016-11-20 14:29:00
C_AND_CPP
作者: wtchen (沒有存在感的人)   2016-11-20 16:40:00
C_AND_CPP板禁伸手文
作者: art1 (人,原來不是人)   2016-11-24 18:14:00
程式要求是先輸入N個數字,這代表後面會輸入幾個整數應該說先輸入「一個」數字,這個數字代表後面總共要輸入幾個整數然後要求找出輸入的這幾個整數中,最大與最小值分別是多少輸入幾個整數時,似乎是要求用空格分開這幾個整數
作者: james732 (好人超)   2016-12-02 23:12:00
作業自己寫好嗎
作者: SOKIYULICA   2015-01-08 00:55:00
看不懂英文可以去google哦~

Links booklink

Contact Us: admin [ a t ] ucptt.com