- %d : 有號整數(Signed)
- %c : 單一字元
- %s : 字串
- %f : 有號浮點數(以小數點表示)
- %e : 有號浮點數(科學記號法)
- %u : 無號整數(Unsigned) *其"u"即為"unsigned"之開頭
- %x or %X : 無號16進位之整數
- %o : 無號8進位之整數
- %ld : 有號之長整數(Long Signed)
- %% : 即輸出"%"符號
看完後,其實還蠻複雜的,但是只要會用就會快速學起來。在此僅舉加法的程式:
#include "stdafx.h"
#include "stdio.h"
#include "stdlib.h"
int main()
{
int a=6;
int b=9;
printf("a+b為:%d+%d=%d\n",a,b,a+b);
system("pause");
}
上面a和b的整數輸入其實亦可再簡化:
int a=6,b=9
而很明顯的,上述的程式是可以再經更進一步的修改,讓這program更有趣、更好玩~
沒有留言:
張貼留言