Toggle navigation
Courses
Questions
Tags
Users
Coding (Chinese: if/else #1)
3
like
0
dislike
282
views
寫一個程式讀入三個正整數a,b,c. 計算並印出其中的最小值.
Sample Input:
100 90 80
Sample Output:
80
參考書籍:由片語學習C程式設計
coding
if
else
chinese
[Normal]
Coding (C)
-
asked
Feb 5, 2017
in
Introduction to Computer Programming I (C)
by
The Contributor
(
20.9k
points)
ID: 21827 -
Available when:
Unlimited
-
Due to:
Unlimited
|
282
views
comment
Please
log in
or
register
to add a comment.
1
Answer
0
like
0
dislike
Hidden content!#include <stdio.h>
#include <stdlib.h>
int main()
{