在Visual C程序中輸入三個整數,而後調用匯編子程序求三個數中的最大值,結果在主程序中顯示

如下爲我我的寫的代碼:spa #include<stdio.h> int main() {         int getMax(int a,int b,int c);blog     int a,b,c;     printf("請輸入三個整數");     scanf("%d%d%d",&a,&b,&c);     printf("最大值爲:%d\n",getMax(a,b,c));get r
相關文章
相關標籤/搜索