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;        
相關文章
相關標籤/搜索