2017-04-04 28 views
-3
#include <stdio.h> 
    #include <stdlib.h> 

    int Function(int a, int b, int c) 
    { 
int Num; 
    if(Num > a && Num > b) 
return c; 
    } 

    int main() 
    { 



    return 0; 
    system("PAUSE"); 
    } 

//我完全不知道如何繼續以及我擁有的是正確的。 我不確定如何將函數與主函數連接起來,以及如何使用不同的變量來連接它們,以及將變量和計算放在主函數中。如何編寫一個帶3個int參數並返回3中最大的函數?

+0

你認爲什麼比較法或一系列競選法是必要的?在紙上寫出來,然後編寫代碼。 – AntonH

+0

在這不是玩笑的情況下,我建議你看看這樣的教程[鏈接](https://www.tutorialspoint.com/cprogramming/) – LazyTrout17

回答

0
int Function(int a, int b, int c) 
{ 
    if (a > b && a > c) 
     return a; 
    else if (b > a && b > c) 
     return b; 
    else if (c > a && c > b) 
     return c; 
} 

我希望你知道如何在main()中調用這個函數。試着做一些基本的C編程教程,你可以很容易地做到這一點。

+0

這是囉嗦:'int Function (int a,int b,int c){int max = a;如果(b> max)max = b;如果(c> max)max = x;最大回報; }'。 –

相關問題