下列程式請複製並貼到你新開的專案上,並執行它.

【程式碼】
#include <stdio.h>
#include <stdlib.h>

int main() {
int x;
x=0
do {
    printf("%d\n",x);
    x++;
}while(x<3);
}

1.請註意上面內縮的指令有那些.
2.請適當修改或增加指令,使程式顯示數字的方式為
   x=0
   x=1
   x=2
   x=3
3.請適當修改或增加指令,使程式顯示數字的方式為
   1^2=1
   2^2=4
   4^2=16
   8^2=64