?? text1.c
字號:
/* s programable rectifier */
#include "stdio.h"
main()
{
int n=0,i=0;
int pcm[8]={0,1,2,3,4,5,6,7},pcm1[8];
printf("the inatialize of the pcm is :\n");
for(;i<=7;i++)
{
printf("%d,",pcm[i]);
}
i=0;
here:
printf("now,%d time is coming,please enter the way the data to go.",i+1);
n=getchar();
getchar();
printf("%d,",n);
pcm1[n]=pcm[i];
i++;
if (i>=8)
{
printf("after CM ,the new value of the pcm is:\n ");
for (i=0;i<=7;i++)
{
printf("%d,",pcm1[i]);
}
exit(0);
}
goto here;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -