C語言實驗——找中間數

#include <stdio.h> int main() {     int x, y, z, t;     scanf("%d %d %d",&x, &y, &z);     if(x > y)     {         t = x;         x = y;         y = t;     }     if(x > z)     {         t = x;        
相關文章
相關標籤/搜索