2009-12-07 18:53:02來源不明

班號

作法 : 跳逸字元要做特殊的處理

要輸出% 要打%%

要輸出" 要打\"

/****************************************************************/

#include<stdlib.h>
#include<stdio.h>
main()
{
  int N;
  while(scanf("%d",&N)==1)
     printf("'C' can use printf(\"%%d\",n); to show integer like %d\n",N);
  return 0;
}

上一篇:獨角獸查理

下一篇:被秒殺的四捨五入