close

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int x;   /宣告x是整數/
    float y; /y是小數/
    x=10;  /指定初值/
    y=36.66;   /指定初值/
    printf("我有%d元\n",x); 印整數
    printf("我考%f分",y);     印小數
    system("PAUSE");
    return 0;
}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Iris 的頭像
    Iris

    Iris-女王向前走

    Iris 發表在 痞客邦 留言(0) 人氣()