fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("入力:a=2,b=3,c=1\n");
  5. printf("昇順:a=3,b=2,c=1");
  6.  
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
入力:a=2,b=3,c=1
昇順:a=3,b=2,c=1