1. 程式人生 > >c語言代碼轉換成lr代碼的過程

c語言代碼轉換成lr代碼的過程

隨機 技術分享 轉換成 alt images cti action code sca

技術分享

Action()
{   
    //腳本實現的功能:在字符串中隨機插入一個新字符串
    char s1[20]="AAAAAAA";
    char s2[20]="@";
    char s3[20];
    int n=4;//n從1開始取值
    int i=0;
    int l;
    //scanf("%d",&n);
    //scanf("%s",s1);
    //scanf("%s",s2);
    int j=n-1;
    int m=0,k=0;


    lr_output_message("%s\n", s1);

    while(s1[j]!=\0
)//改if為while { s3[m]=s1[j]; m++; j++; } s3[m] = \0;//加入字符串結束標識 while(s2[i]!=\0)//改if為while { s1[n-1+i]=s2[i]; i++; } l=n+i-1; while(s3[k]!=\0)//改if為while { s1[l]=s3[k]; k++; l++; } s1[l]
= \0;//加入字符串結束標識 //printf("%s",s1); lr_output_message("%s\n", s1); return 0; }

c語言代碼轉換成lr代碼的過程