Toggle navigation
Courses
Questions
Tags
Users
AD practice 1
0
like
0
dislike
7.1k
views
請設計一個程式,讓使用者輸入三個整數數字,程式會輸出三個數當中最大的那個
範例輸入:
-10 5 99
範例輸出:
99
[Normal]
Coding (C)
-
asked
Oct 11, 2016
in
2016-1 程式設計(一)AD
by
Shun-Po
(
18k
points)
ID: 13021 -
Available when:
Unlimited
-
Due to:
Unlimited
|
7.1k
views
comment
Please
log in
or
register
to add a comment.
54
Answers
0
like
0
dislike
Hidden content!#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
*** ** *** ***** * * * * a1 ,a2 ,a3;
* ** * ** * * * * *** * * *** * * ** * * ** ** ** * * * * ** *
* *** * * ** * * * * > a2){
* * ** ** * * * * * * ** ** * * * * * * * > a3)
* * * * * ** * *** ** * * * ** * * * * ** * * * ** * * * *** ***** * *
* ** ****** * * *** * * * ** * * ** ** *
* ** * ** **** * * * * ** * * * ** ** * * ** ** * * * * * * *** * * * * **
* ** ** * * ** *
** * ** * * * ** * * *
* * * * ** * * * * ** * * * ** ** * * * * * * > a3)
* * * * * ** * ** * * ** * * ** ** ** * ** ******* * ** * ** * * * * * * * ** *
* * * * ** **** ** * * * * * * ** * * *
* ** * * * * ******* * ** * * ** * * ** * ** * ** **** ** ** * * ** **** ** ** *
* *** * ** * * * * * **** * ***
* * ** * ** ** * ** * * * ** ** ** ** **
* * * * * ** * ** * * * 0;
}
answered
Oct 20, 2016
by
Dhgir.Abien
(
-216
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c;