fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main (void)
  4. {
  5. int num1,num2;
  6. num1 = 30;
  7. num2 = 42;
  8. printf("\'%d%%同學來自中部,%d%%同學來自南部\'",num1,num2);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
'30%同學來自中部,42%同學來自南部'