大家好,刚开始学 C,有此问题想请教大家,谢谢
以以下原始码为例:#include <stdio.h>
#include <stdlib.h>
main()
{
int i;
i = 1;
printf("C 程式設計\n");
printf("程式練習 %d \n",i);
printf("C 是精彩的 \n");
system("pause");
}
#include <stdlib.h>
main()
{
int i;
i = 1;
printf("C 程式設計\n");
printf("程式練習 %d \n",i);
printf("C 是精彩的 \n");
system("pause");
}
%d = i = 1
那为什么不写成:
#include <stdio.h>
#include <stdlib.h>
main()
{
printf("C 程式設計\n");
printf("程式練習 1\n");
printf("C 是精彩的 \n");
system("pause");
}
#include <stdlib.h>
main()
{
printf("C 程式設計\n");
printf("程式練習 1\n");
printf("C 是精彩的 \n");
system("pause");
}
既然知道整数是1,为何还称作变数?为何还要用代数呢?
我知道问题实在太基本,但我只是看书学,实在不明白,还望大大帮忙解答,谢谢!