亚洲精品日韩中文字幕久久久,欧美国产日韩a欧美在线观看,亚洲色精品88色婷婷七月丁香,大地资源第二页在线观看免费高清

小程序開發(fā)源代碼大全(小程序示例官方源代碼)

小程序開發(fā) 3577
今天給各位分享小程序開發(fā)源代碼大全的知識,其中也會對小程序示例官方源代碼進行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關注本站,現(xiàn)在開始吧!本文目錄一覽: 1、求C語言小程序源代碼,300行左右

今天給各位分享小程序開發(fā)源代碼大全的知識,其中也會對小程序示例官方源代碼進行解釋,如果能碰巧解決你現(xiàn)在面臨的問題,別忘了關注本站,現(xiàn)在開始吧!

本文目錄一覽:

求C語言小程序源代碼,300行左右

黑白棋游戲

#include "graphics.h" /*圖形系統(tǒng)頭文件*/

#define LEFT 0x4b00 /*光標左鍵值*/

#define RIGHT 0x4d00 /*光標右鍵值*/

#define DOWN 0x5000 /*光標下鍵值*/

#define UP 0x4800 /*光標上鍵值*/

#define ESC 0x011b /* ESC鍵值*/

#define ENTER 0x1c0d /* 回車鍵值*/

int a[8][8]={0},key,score1,score2;/*具體分數(shù)以及按鍵與存放棋子的變量*/

char playone[3],playtwo[3];/*兩個人的得分轉換成字符串輸出*/

void playtoplay(void);/*人人對戰(zhàn)函數(shù)*/

void DrawQp(void);/*畫棋盤函數(shù)*/

void SetPlayColor(int x);/*設置棋子第一次的顏色*/

void MoveColor(int x,int y);/*恢復原來棋盤狀態(tài)*/

int QpChange(int x,int y,int z);/*判斷棋盤的變化*/

void DoScore(void);/*處理分數(shù)*/

void PrintScore(int n);/*輸出成績*/

void playWin(void);/*輸出勝利者信息*/

/******主函數(shù)*********/

void main(void)

{

int gd=DETECT,gr;

initgraph(gd,gr,"c:\\tc"); /*初始化圖形系統(tǒng)*/

DrawQp();/*畫棋盤*/

playtoplay();/*人人對戰(zhàn)*/

getch();

closegraph();/*關閉圖形系統(tǒng)*/

}

void DrawQp()/*畫棋盤*/

{

int i,j;

score1=score2=0;/*棋手一開始得分都為0*/

setbkcolor(BLUE);

for(i=100;i=420;i+=40)

{

line(100,i,420,i);/*畫水平線*/

line(i,100,i,420); /*畫垂直線*/

}

setcolor(0);/*取消圓周圍的一圈東西*/

setfillstyle(SOLID_FILL,15);/*白色實體填充模式*/

fillellipse(500,200,15,15); /*在顯示得分的位置畫棋*/

setfillstyle(SOLID_FILL,8); /*黑色實體填充模式*/

fillellipse(500,300,15,15);

a[3][3]=a[4][4]=1;/*初始兩個黑棋*/

a[3][4]=a[4][3]=2;/*初始兩個白棋*/

setfillstyle(SOLID_FILL,WHITE);

fillellipse(120+3*40,120+3*40,15,15);

fillellipse(120+4*40,120+4*40,15,15);

setfillstyle(SOLID_FILL,8);

fillellipse(120+3*40,120+4*40,15,15);

fillellipse(120+4*40,120+3*40,15,15);

score1=score2=2; /*有棋后改變分數(shù)*/

DoScore();/*輸出開始分數(shù)*/

}

void playtoplay()/*人人對戰(zhàn)*/

{

int x,y,t=1,i,j,cc=0;

while(1)/*換棋手走棋*/

{

x=120,y=80;/*每次棋子一開始出來的坐標,x為行坐標,y為列坐標*/

while(1) /*具體一個棋手走棋的過程*/

{

PrintScore(1);/*輸出棋手1的成績*/

PrintScore(2);/*輸出棋手2的成績*/

SetPlayColor(t);/*t變量是用來判斷棋手所執(zhí)棋子的顏色*/

fillellipse(x,y,15,15);

key=bioskey(0);/*接收按鍵*/

if(key==ESC)/*跳出游戲*/

break;

else

if(key==ENTER)/*如果按鍵確定就可以跳出循環(huán)*/

{

if(y!=80a[(x-120)/40][(y-120)/40]!=1

a[(x-120)/40][(y-120)/40]!=2)/*如果落子位置沒有棋子*/

{

if(t%2==1)/*如果是棋手1移動*/

a[(x-120)/40][(y-120)/40]=1;

else/*否則棋手2移動*/

a[(x-120)/40][(y-120)/40]=2;

if(!QpChange(x,y,t))/*落子后判斷棋盤的變化*/

{

a[(x-120)/40][(y-120)/40]=0;/*恢復空格狀態(tài)*/

cc++;/*開始統(tǒng)計嘗試次數(shù)*/

if(cc=64-score1-score2) /*如果嘗試超過空格數(shù)則停步*/

{

MoveColor(x,y);

fillellipse(x,y,15,15);

break;

}

else

continue;/*如果按鍵無效*/

}

DoScore();/*分數(shù)的改變*/

break;/*棋盤變化了,則輪對方走棋*/

}

else/*已經(jīng)有棋子就繼續(xù)按鍵*/

continue;

}

else /*四個方向按鍵的判斷*/

if(key==LEFTx120)/*左方向鍵*/

{

MoveColor(x,y);

fillellipse(x,y,15,15);

SetPlayColor(t);

x-=40;

fillellipse(x,y,15,15);

}

else

if(key==RIGHTx400y80)/*右方向鍵*/

{

MoveColor(x,y);

fillellipse(x,y,15,15);

SetPlayColor(t);

x+=40;

fillellipse(x,y,15,15);

}

else

if(key==UPy120)/*上方向鍵*/

{

MoveColor(x,y);

fillellipse(x,y,15,15);

SetPlayColor(t);

y-=40;

fillellipse(x,y,15,15);

}

else

if(key==DOWNy400)/*下方向鍵*/

{

MoveColor(x,y);

fillellipse(x,y,15,15);

SetPlayColor(t);

y+=40;

fillellipse(x,y,15,15);

}

}

if(key==ESC)/*結束游戲*/

break;

if((score1+score2)==64||score1==0||score2==0)/*格子已經(jīng)占滿或一方棋子為0判斷勝負*/

{

playWin();/*輸出最后結果*/

break;

}

t=t%2+1; /*一方走后,改變棋子顏色即輪對方走*/

cc=0; /*計數(shù)值恢復為0*/

} /*endwhile*/

}

void SetPlayColor(int t)/*設置棋子顏色*/

{

if(t%2==1)

setfillstyle(SOLID_FILL,15);/*白色*/

else

setfillstyle(SOLID_FILL,8);/*灰色*/

}

void MoveColor(int x,int y)/*走了一步后恢復原來格子的狀態(tài)*/

{

if(y100)/*如果是從起點出發(fā)就恢復藍色*/

setfillstyle(SOLID_FILL,BLUE);

else/*其他情況如果是1就恢復白色棋子,2恢復黑色棋子,或恢復藍色棋盤*/

switch(a[(x-120)/40][(y-120)/40])

{

case 1:

setfillstyle(SOLID_FILL,15);break; /*白色*/

case 2:

setfillstyle(SOLID_FILL,8);break; /*黑色*/

default:

setfillstyle(SOLID_FILL,BLUE); /*藍色*/

}

}

int QpChange(int x,int y,int t)/*判斷棋盤的變化*/

{

int i,j,k,kk,ii,jj,yes;

yes=0;

i=(x-120)/40; /*計算數(shù)組元素的行下標*/

j=(y-120)/40; /*計算數(shù)組元素的列下標*/

SetPlayColor(t);/*設置棋子變化的顏色*/

/*開始往8個方向判斷變化*/

if(j6)/*往右邊*/

{

for(k=j+1;k8;k++)

if(a[i][k]==a[i][j]||a[i][k]==0)/*遇到自己的棋子或空格結束*/

break;

if(a[i][k]!=0k8)

{

for(kk=j+1;kkkk8;kk++)/*判斷右邊*/

{

a[i][kk]=a[i][j]; /*改變棋子顏色*/

fillellipse(120+i*40,120+kk*40,15,15);

}

if(kk!=j+1) /*條件成立則有棋子改變過顏色*/

yes=1;

}

}

if(j1)/*判斷左邊*/

{

for(k=j-1;k=0;k--)

if(a[i][k]==a[i][j]||!a[i][k])

break;

if(a[i][k]!=0k=0)

{

for(kk=j-1;kkkk=0;kk--)

{

a[i][kk]=a[i][j];

fillellipse(120+i*40,120+kk*40,15,15);

}

if(kk!=j-1)

yes=1;

}

}

if(i6)/*判斷下邊*/

{

for(k=i+1;k8;k++)

if(a[k][j]==a[i][j]||!a[k][j])

break;

if(a[k][j]!=0k8)

{

for(kk=i+1;kkkk8;kk++)

{

a[kk][j]=a[i][j];

fillellipse(120+kk*40,120+j*40,15,15);

}

if(kk!=i+1)

yes=1;

}

}

if(i1)/*判斷上邊*/

{

for(k=i-1;k=0;k--)

if(a[k][j]==a[i][j]||!a[k][j])

break;

if(a[k][j]!=0k=0)

{

for(kk=i-1;kkkk=0;kk--)

{

a[kk][j]=a[i][j];

fillellipse(120+kk*40,120+j*40,15,15);

}

if(kk!=i-1)

yes=1;

}

}

if(i1j6)/*右上*/

{

for(k=i-1,kk=j+1;k=0kk8;k--,kk++)

if(a[k][kk]==a[i][j]||!a[k][kk])

break;

if(a[k][kk]k=0kk8)

{

for(ii=i-1,jj=j+1;iikk=0;ii--,jj++)

{

a[ii][jj]=a[i][j];

fillellipse(120+ii*40,120+jj*40,15,15);

}

if(ii!=i-1)

yes=1;

}

}

if(i6j1)/*左下*/

{

for(k=i+1,kk=j-1;k8kk=0;k++,kk--)

if(a[k][kk]==a[i][j]||!a[k][kk])

break;

if(a[k][kk]!=0k8kk=0)

{

for(ii=i+1,jj=j-1;iikk8;ii++,jj--)

{

a[ii][jj]=a[i][j];

fillellipse(120+ii*40,120+jj*40,15,15);

}

if(ii!=i+1)

yes=1;

}

}

if(i1j1)/*左上*/

{

for(k=i-1,kk=j-1;k=0kk=0;k--,kk--)

if(a[k][kk]==a[i][j]||!a[k][kk])

break;

if(a[k][kk]!=0k=0kk=0)

{

for(ii=i-1,jj=j-1;iikk=0;ii--,jj--)

{

a[ii][jj]=a[i][j];

fillellipse(120+ii*40,120+jj*40,15,15);

}

if(ii!=i-1)

yes=1;

}

}

if(i6j6)/* 右下*/

{

for(k=i+1,kk=j+1;kk8kk8;k++,kk++)

if(a[k][kk]==a[i][j]||!a[k][kk])

break;

if(a[k][kk]!=0kk8k8)

{

for(ii=i+1,jj=j+1;iikk8;ii++,jj++)

{

a[ii][jj]=a[i][j];

fillellipse(120+ii*40,120+jj*40,15,15);

}

if(ii!=i+1)

yes=1;

}

}

return yes;/*返回是否改變過棋子顏色的標記*/

}

void DoScore()/*處理分數(shù)*/

{

int i,j;

score1=score2=0;/*重新開始計分數(shù)*/

for(i=0;i8;i++)

for(j=0;j8;j++)

if(a[i][j]==1)/*分別統(tǒng)計兩個人的分數(shù)*/

score1++;

else

if(a[i][j]==2)

score2++;

}

void PrintScore(int playnum)/*輸出成績*/

{

if(playnum==1)/*清除以前的成績*/

{

setfillstyle(SOLID_FILL,BLUE);

bar(550,100,640,400);

}

setcolor(RED);

settextstyle(0,0,4);/*設置文本輸出樣式*/

if(playnum==1)/*判斷輸出哪個棋手的分,在不同的位置輸出*/

{

sprintf(playone,"%d",score1);

outtextxy(550,200,playone);

}

else

{

sprintf(playtwo,"%d",score2);

outtextxy(550,300,playtwo);

}

setcolor(0);

}

void playWin()/*輸出最后的勝利者結果*/

{

settextstyle(0,0,4);

setcolor(12);

if(score2score1)/*開始判斷最后的結果*/

outtextxy(100,50,"black win!");

else

if(score2score1)

outtextxy(100,50,"white win!");

else

outtextxy(60,50,"you all win!");

}

五子棋游戲

/*五子棋*/

#includestdio.h

#includestdlib.h

#includegraphics.h

#includebios.h

#includeconio.h

#define LEFT 0x4b00

#define RIGHT 0x4d00

#define DOWN 0x5000

#define UP 0x4800

#define ESC 0x011b

#define SPACE 0x3920

#define BILI 20

#define JZ 4

#define JS 3

#define N 19

int box[N][N];

int step_x,step_y ;

int key ;

int flag=1 ;

void draw_box();

void draw_cicle(int x,int y,int color);

void change();

void judgewho(int x,int y);

void judgekey();

int judgeresult(int x,int y);

void attentoin();

void attention()

{

char ch ;

window(1,1,80,25);

textbackground(LIGHTBLUE);

textcolor(YELLOW);

clrscr();

gotoxy(15,2);

printf("游戲操作規(guī)則:");

gotoxy(15,4);

printf("Play Rules:");

gotoxy(15,6);

printf("1、按左右上下方向鍵移動棋子");

gotoxy(15,8);

printf("1. Press Left,Right,Up,Down Key to move Piece");

gotoxy(15,10);

printf("2、按空格確定落棋子");

gotoxy(15,12);

printf("2. Press Space to place the Piece");

gotoxy(15,14);

printf("3、禁止在棋盤外按空格");

gotoxy(15,16);

printf("3. DO NOT press Space outside of the chessboard");

gotoxy(15,18);

printf("你是否接受上述的游戲規(guī)則(Y/N)");

gotoxy(15,20);

printf("Do you accept the above Playing Rules? [Y/N]:");

while(1)

{

gotoxy(60,20);

ch=getche();

if(ch=='Y'||ch=='y')

break ;

else if(ch=='N'||ch=='n')

{

window(1,1,80,25);

textbackground(BLACK);

textcolor(LIGHTGRAY);

clrscr();

exit(0);

}

gotoxy(51,12);

printf(" ");

}

}

void draw_box()

{

int x1,x2,y1,y2 ;

setbkcolor(LIGHTBLUE);

setcolor(YELLOW);

gotoxy(7,2);

printf("Left, Right, Up, Down KEY to move, Space to put, ESC-quit.");

for(x1=1,y1=1,y2=18;x1=18;x1++)

line((x1+JZ)*BILI,(y1+JS)*BILI,(x1+JZ)*BILI,(y2+JS)*BILI);

for(x1=1,y1=1,x2=18;y1=18;y1++)

line((x1+JZ)*BILI,(y1+JS)*BILI,(x2+JZ)*BILI,(y1+JS)*BILI);

for(x1=1;x1=18;x1++)

for(y1=1;y1=18;y1++)

box[x1][y1]=0 ;

}

void draw_circle(int x,int y,int color)

{

setcolor(color);

setlinestyle(SOLID_LINE,0,1);

x=(x+JZ)*BILI ;

y=(y+JS)*BILI ;

circle(x,y,8);

}

void judgekey()

{

int i ;

int j ;

switch(key)

{

case LEFT :

if(step_x-10)

break ;

else

{

for(i=step_x-1,j=step_y;i=1;i--)

if(box[i][j]==0)

{

draw_circle(step_x,step_y,LIGHTBLUE);

break ;

}

if(i1)break ;

step_x=i ;

judgewho(step_x,step_y);

break ;

}

case RIGHT :

if(step_x+118)

break ;

else

{

for(i=step_x+1,j=step_y;i=18;i++)

if(box[i][j]==0)

{

draw_circle(step_x,step_y,LIGHTBLUE);

break ;

}

if(i18)break ;

step_x=i ;

judgewho(step_x,step_y);

break ;

}

case DOWN :

if((step_y+1)18)

break ;

else

{

for(i=step_x,j=step_y+1;j=18;j++)

if(box[i][j]==0)

{

draw_circle(step_x,step_y,LIGHTBLUE);

break ;

}

if(j18)break ;

step_y=j ;

judgewho(step_x,step_y);

break ;

}

case UP :

if((step_y-1)0)

break ;

else

{

for(i=step_x,j=step_y-1;j=1;j--)

if(box[i][j]==0)

{

draw_circle(step_x,step_y,LIGHTBLUE);

break ;

}

if(j1)break ;

step_y=j ;

judgewho(step_x,step_y);

break ;

}

case ESC :

break ;

case SPACE :

if(step_x=1step_x=18step_y=1step_y=18)

{

if(box[step_x][step_y]==0)

{

box[step_x][step_y]=flag ;

if(judgeresult(step_x,step_y)==1)

{

sound(1000);

delay(1000);

nosound();

gotoxy(30,4);

if(flag==1)

{

setbkcolor(BLUE);

cleardevice();

setviewport(100,100,540,380,1);

/*定義一個圖形窗口*/

setfillstyle(1,2);

/*綠色以實填充*/

setcolor(YELLOW);

rectangle(0,0,439,279);

floodfill(50,50,14);

setcolor(12);

settextstyle(1,0,5);

/*三重筆劃字體, 水平放?5倍*/

outtextxy(20,20,"The White Win !");

setcolor(15);

settextstyle(3,0,5);

/*無襯筆劃字體, 水平放大5倍*/

outtextxy(120,120,"The White Win !");

setcolor(14);

settextstyle(2,0,8);

getch();

closegraph();

exit(0);

}

if(flag==2)

{

setbkcolor(BLUE);

cleardevice();

setviewport(100,100,540,380,1);

/*定義一個圖形窗口*/

setfillstyle(1,2);

/*綠色以實填充*/

setcolor(YELLOW);

rectangle(0,0,439,279);

floodfill(50,50,14);

setcolor(12);

settextstyle(1,0,8);

/*三重筆劃字體, 水平放大8倍*/

outtextxy(20,20,"The Red Win !");

setcolor(15);

settextstyle(3,0,5);

/*無襯筆劃字體, 水平放大5倍*/

outtextxy(120,120,"The Red Win !");

setcolor(14);

settextstyle(2,0,8);

getch();

closegraph();

exit(0);

}

}

change();

break ;

}

}

else

break ;

}

}

void change()

{

if(flag==1)

flag=2 ;

else

flag=1 ;

}

void judgewho(int x,int y)

{

if(flag==1)

draw_circle(x,y,15);

if(flag==2)

draw_circle(x,y,4);

}

int judgeresult(int x,int y)

{

int j,k,n1,n2 ;

while(1)

{

n1=0 ;

n2=0 ;

/*水平向左數(shù)*/

for(j=x,k=y;j=1;j--)

{

if(box[j][k]==flag)

n1++;

else

break ;

}

/*水平向右數(shù)*/

for(j=x,k=y;j=18;j++)

{

if(box[j][k]==flag)

n2++;

else

break ;

}

if(n1+n2-1=5)

{

return(1);

break ;

}

/*垂直向上數(shù)*/

n1=0 ;

n2=0 ;

for(j=x,k=y;k=1;k--)

{

if(box[j][k]==flag)

n1++;

else

break ;

}

/*垂直向下數(shù)*/

for(j=x,k=y;k=18;k++)

{

if(box[j][k]==flag)

n2++;

else

break ;

}

if(n1+n2-1=5)

{

return(1);

break ;

}

/*向左上方數(shù)*/

n1=0 ;

n2=0 ;

for(j=x,k=y;j=1,k=1;j--,k--)

{

if(box[j][k]==flag)

n1++;

else

break ;

}

/*向右下方數(shù)*/

for(j=x,k=y;j=18,k=18;j++,k++)

{

if(box[j][k]==flag)

n2++;

else

break ;

}

if(n1+n2-1=5)

{

return(1);

break ;

}

/*向右上方數(shù)*/

n1=0 ;

n2=0 ;

for(j=x,k=y;j=18,k=1;j++,k--)

{

if(box[j][k]==flag)

n1++;

else

break ;

}

/*向左下方數(shù)*/

for(j=x,k=y;j=1,k=18;j--,k++)

{

if(box[j][k]==flag)

n2++;

else

break ;

}

if(n1+n2-1=5)

{

return(1);

break ;

}

return(0);

break ;

}

}

void main()

{

int gdriver=VGA,gmode=VGAHI;

clrscr();

attention();

initgraph(gdriver,gmode,"c:\\tc");

/* setwritemode(XOR_PUT);*/

flag=1 ;

draw_box();

do

{

step_x=0 ;

step_y=0 ;

/*draw_circle(step_x,step_y,8); */

judgewho(step_x-1,step_y-1);

do

{

while(bioskey(1)==0);

key=bioskey(0);

judgekey();

}

while(key!=SPACEkey!=ESC);

}

while(key!=ESC);

closegraph();

}

三級分銷小程序商城系統(tǒng)源代碼開發(fā)

電商小程序三級分銷模板已經(jīng)發(fā)布,需要可以直接使用的。

第1種是賣模板為主的網(wǎng)絡公司。

優(yōu)點是:價格低,幾千塊錢到萬元之間就能搞定,方便,能夠快速上線;

缺點是:修改功能麻煩,這里需要避免低價陷阱,不要到最后才發(fā)現(xiàn)模板性的修改功能所花的錢比買模板還貴。而且不是獨立的,一個模本賣給很多商家用,模板不是永久使用的,一般每年都要交年費。

第2種是主流的方式,定制開發(fā)為主的網(wǎng)絡公司。

優(yōu)點是:獨一無二的,專為你的企業(yè)或者店面定制的,功能你來定,要求你來定,后期修改BUG方便,改東西也很方便,最重要的是永久使用權!!

缺點是:相對價格比較高!!! 定制版的基本費用在上萬元到十幾萬不等!不過貴也有貴的道理吧,畢竟功能做的更全面一點。

最后總結,至于找什么樣的小程序開發(fā)公司?花多少錢來開發(fā)?還是需要看貴公司準備的預算這塊!希望對大家有用!

求助啊,誰有有趣的c語言小程序,并且要有源代碼??!

學習“推箱子”C語言編碼:

#include stdio.h

#include conio.h

#includestdlib.h

#includewindows.h

int m =0;? //m代表第幾關

struct maps{short a[9][11]; };

struct maps map[5]={ 0,0,0,0,0,0,0,0,0,0,0, ?//共5關,每關9行

??????????????0,1,1,1,1,1,1,1,0,0,0,

??????????????0,1,0,0,0,0,0,1,1,1,0,

??????????????1,1,4,1,1,1,0,0,0,1,0, ?//0空地,1墻

???????????????1,5,0,0,4,0,0,4,0,1,0, ?//4是箱子,5是人

??????????????1,0,3,3,1,0,4,0,1,1,0, ?//3是目的地

??????????????1,1,3,3,1,0,0,0,1,0,0, ?//7是箱子在目的地(4+3)

??????????????0,1,1,1,1,1,1,1,1,0,0, ?//8是人在目的地(5+3)

? ? ? ? ? ? ? ? 0,0,0,0,0,0,0,0,0,0,0,

? ? ? ? ? ? ? ? 0,0,0,0,0,0,0,0,0,0,0,

??????????????0,0,1,1,1,1,0,0,0,0,0,

??????????????0,0,1,5,0,1,1,1,0,0,0,

??????????????0,0,1,0,4,0,0,1,0,0,0,

???????????????0,1,1,1,0,1,0,1,1,0,0,

??????????????0,1,3,1,0,1,0,0,1,0,0,

??????????????0,1,3,4,0,0,1,0,1,0,0,

??????????????0,1,3,0,0,0,4,0,1,0,0,

? ? ? ? ? ? ? ? 0,1,1,1,1,1,1,1,1,0,0,

? ? ? ? ? ? ? ? 0,0,0,0,0,0,0,0,0,0,0,

??????????????0,0,0,1,1,1,1,1,1,1,0,

??????????????0,0,1,1,0,0,1,0,5,1,0,

??????????????0,0,1,0,0,0,1,0,0,1,0,

???????????????0,0,1,4,0,4,0,4,0,1,0,

??????????????0,0,1,0,4,1,1,0,0,1,0,

??????????????1,1,1,0,4,0,1,0,1,1,0,

??????????????1,3,3,3,3,3,0,0,1,0,0,

? ? ? ? ? ? ? ? 1,1,1,1,1,1,1,1,1,0,0,

? ? ? ? ? ? ? ? 0,1,1,1,1,1,1,1,1,1,0,

??????????????0,1,0,0,1,1,0,0,0,1,0,

??????????????0,1,0,0,0,4,0,0,0,1,0,

??????????????0,1,4,0,1,1,1,0,4,1,0,

???????????????0,1,0,1,3,3,3,1,0,1,0,

??????????????1,1,0,1,3,3,3,1,0,1,1,

??????????????1,0,4,0,0,4,0,0,4,0,1,

??????????????1,0,0,0,0,0,1,0,5,0,1,

? ? ? ? ? ? ? ? 1,1,1,1,1,1,1,1,1,1,1,

? ? ? ? ? ? ? ? 0,0,0,0,0,0,0,0,0,0,0,

??????????????0,0,0,1,1,1,1,1,1,0,0,

??????????????0,1,1,1,0,0,0,0,1,0,0,

??????????????1,1,3,0,4,1,1,0,1,1,0,

???????????????1,3,3,4,0,4,0,0,5,1,0,

??????????????1,3,3,0,4,0,4,0,1,1,0,

??????????????1,1,1,1,1,1,0,0,1,0,0,

??????????????0,0,0,0,0,1,1,1,1,0,0,

? ? ? ? ? ? ? ? 0,0,0,0,0,0,0,0,0,0,0 };

void DrMap( )? //繪制地圖

{ CONSOLE_CURSOR_INFO cursor_info={1,0};? ?//隱藏光標的設置

SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE),cursor_info);

printf("\n\n \t\t\b推箱子");

printf("\n \t");

for (int i = 0; i 9; i++)

{for (int j = 0; j 11; j++)

{switch (map[m].a[i][j])

{case 0: ?printf("? "); break;

case 1: ?printf("■"); break;

??????case 3: ?printf("◎");break;

case 4: ?printf("□"); break;

case 5: ?printf("♀"); break; ??//5是人

case 7:? printf("□"); break; ?//4 + 3箱子在目的地中

case 8:? printf("♀");break;? ?// 5 + 3人在目的地中

}

}

printf("\n\t");

}

}

void gtxy(int x, int y)? //控制光標位置的函數(shù)

{ COORD coord;

coord.X = x;

coord.Y = y;

SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);

}

void start( )? //開始游戲

{ int r, c; ?? //r,c用于記錄人的下標

for (int i = 0; i 9; i++)

{ for (int j = 0; j 11; j++)

? ?? {if (map[m].a[i][j] == 5||map[m].a[i][j]==8) { r = i; ?c = j; } } //i j 人的下標

}

char key;

key = getch( );

switch (key)

{case 'W':

case 'w':

case 72:

if (map[m]. a[r - 1][c] == 0|| map[m]. a [r - 1][c] == 3)

{ gtxy(2*c+8,r-1+3); printf("♀"); ? // gtxy(2*c+8,r-1+3)是到指定位置輸出字符

? ? ? ? if(map[m]. a[r ][c] == 5){gtxy(2*c+8,r+3); printf("? "); }

? ? ?? if(map[m]. a[r ][c] == 8){gtxy(2*c+8,r+3); printf("◎");}

? ? ?? map[m]. a [r - 1][c] += 5; ?map[m]. a [r][c] -= 5; }

else ?if (map[m]. a [r - 1][c] == 4 || map[m]. a [r - 1][c] == 7)

? ? ?? { if (map[m]. a [r - 2][c] == 0 || map[m]. a [r - 2][c] == 3)

{ gtxy(2*c+8,r-2+3); printf("□"); gtxy(2*c+8,r-1+3); printf("♀");

? ? ? ? ?? if(map[m]. a[r ][c] == 5){gtxy(2*c+8,r+3); printf("? "); }

? ? ? ? ?? if(map[m]. a[r ][c] == 8){gtxy(2*c+8,r+3); printf("◎");}

? ? ? ? ?? map[m]. a [r - 2][c] += 4; ?map[m]. a [r - 1][c] += 1;

?map[m]. a [r][c] -= 5; }

} break;

case 'S':

case 's':

case 80:

if (map[m]. a [r + 1][c] == 0 || map[m]. a [r + 1][c] == 3)

?{ gtxy(2*c+8,r+1+3); printf("♀");

? ? ? ?? if(map[m]. a[r ][c] == 5){gtxy(2*c+8,r+3); printf("? "); }

? ? ? ? if(map[m]. a[r ][c] == 8){gtxy(2*c+8,r+3); printf("◎");}

? ? ? ? map[m]. a [r + 1][c] += 5; ?map[m]. a [r][c] -= 5; }

? ?? else if (map[m]. a [r + 1][c] == 4 || map[m]. a [r+ 1][c] == 7)

? ? ? ?? { if (map[m]. a [r + 2][c] == 0 || map[m]. a [r + 2][c] == 3)

? ? ? ? ?? { gtxy(2*c+8,r+2+3); printf("□"); gtxy(2*c+8,r+1+3); printf("♀");

? ? ? ? ? ?? if(map[m]. a[r ][c] == 5){gtxy(2*c+8,r+3); printf("? "); }

? ? ? ? ? ? if(map[m]. a[r ][c] == 8){gtxy(2*c+8,r+3); printf("◎");}

? ? ? ? ? ? map[m]. a [r + 2][c] += 4; map[m]. a [r + 1][c] += 1;

map[m]. a [r][c] -= 5; }

??}break;

case 'A':

case 'a':

case 75:

if (map[m]. a [r ][c - 1] == 0 || map[m]. a [r ][c - 1] == 3)

? ? ? ? { gtxy(2*(c-1)+8,r+3); printf("♀");

? ? ? ?? if(map[m]. a[r ][c] == 5){gtxy(2*c+8,r+3); printf("? "); }

? ? ? ? if(map[m]. a[r ][c] == 8){gtxy(2*c+8,r+3); printf("◎");}

? ? ? ?? map[m]. a [r ][c - 1] += 5; map[m]. a [r][c] -= 5; }

? ?? else if (map[m]. a [r][c - 1] == 4 || map[m]. a [r][c - 1] == 7)

? ? ? ? {if (map[m]. a [r ][c - 2] == 0 || map[m]. a [r ][c - 2] == 3)

{ gtxy(2*(c-2)+8,r+3); printf("□"); gtxy(2*(c-1)+8,r+3); printf("♀");

? ? ? ? ? ? if(map[m]. a[r ][c] == 5){gtxy(2*c+8,r+3); printf("? "); }

? ? ? ? ? ? if(map[m]. a[r ][c] == 8){gtxy(2*c+8,r+3); printf("◎");}

? ? ? ? ? ? map[m]. a [r ][c - 2] += 4; map[m]. a [r ][c - 1] += 1;

? ? ? ? ? ? map[m]. a [r][c] -= 5; }

?}break;

case 'D':

case 'd':

case 77:

if (map[m]. a [r][c + 1] == 0 || map[m]. a [r][c + 1] == 3)

?{ gtxy(2*(c+1)+8,r+3); printf("♀");

? ? ? ?? if(map[m]. a[r ][c] == 5){gtxy(2*c+8,r+3); printf("? "); }

? ? ? ?? if(map[m]. a[r ][c] == 8) {gtxy(2*c+8,r+3); printf("◎");}

? ? ? ? map[m]. a [r][c + 1] += 5; ?map[m]. a [r][c] -= 5; }

? ? else if (map[m]. a [r][c + 1] == 4 || map[m]. a [r][c + 1] == 7)

? ? ? ? { if (map[m]. a [r][c + 2] == 0 || map[m]. a [r][c + 2] == 3)

{ gtxy(2*(c+2)+8,r+3); printf("□"); gtxy(2*(c+1)+8,r+3); printf("♀");

? ? ? ? ? ? if(map[m]. a[r ][c] == 5){gtxy(2*c+8,r+3); printf("? "); }

? ? ? ? ?? if(map[m]. a[r ][c] == 8){gtxy(2*c+8,r+3); printf("◎");}

? ? ? ? ?? map[m]. a [r][c + 2] += 4; map[m]. a [r][c + 1] += 1;

? ? ? ? ?? map[m]. a [r][c] -= 5; }

?}break;

? }

}

int ifwan( )? //是否完成(1是0否)

{ if(m==0){if(map[m].a[5][2]==7 map[m].a[5][3]==7

? ? ? ? ? ? ? ? map[m].a[6][2]==7 map[m].a[6][3]==7) return 1;}

if(m==1){if(map[m].a[5][2]==7 map[m].a[6][2]==7

? ? ? ? ? ? ? ? map[m].a[7][2]==7) return 1;}

if(m==2){if(map[m].a[7][1]==7 map[m].a[7][2]==7 map[m].a[7][3]==7

? ? ? ? ? ? ?? map[m].a[7][4]==7 map[m].a[7][5]==7) return 1;}

if(m==3){if(map[m].a[4][4]==7 map[m].a[4][5]==7 map[m].a[4][6]==7

? ? ? map[m].a[5][4]==7 map[m].a[5][5]==7 map[m].a[5][6]==7) return 1;}

if(m==4){if(map[m].a[3][2]==7 map[m].a[4][1]==7 map[m].a[4][2]==7

? ? ? ? ? ? ? map[m].a[5][1]==7 map[m].a[5][2]==7) return 1;}

return 0;

}

int main( ) ?//主函數(shù)

{ while (1)

? ?? { system("cls");

? ? ?? DrMap( );

? ? ?? while (1)

? ? ? ? ?? { start( );

? ? ? ? ? ?? if(ifwan()){printf("\007");break;} //完成后響鈴

? ? ? ? ? }

? ? ?? m+=1;

? ? }

? return 0;

}

求一個最簡單的微信小程序源代碼

要帶后臺不,帶后臺的一般不會簡單,這種額也有,價格會高些,不帶后臺的話便宜多了,一般作業(yè)應該是不帶后臺的吧,當然也可以直接找額說要求

微信小程序分銷系統(tǒng)源代碼開發(fā)

微信小程序分銷系統(tǒng)的開發(fā)大致有三種方式:

一、自己有多年的編程基礎,自己學習,自己研究。

二、使用第三方小程序開發(fā)工具這種方式是使用第三方的小程序開發(fā)工具,這類工具一般都不需要編程。區(qū)別于微信小程序官方的代碼編輯器,這類工具是圖形化的界面。

做小程序就像做PPT一樣。把圖片、文字、音樂等等東西插入,然后設置它們的效果,編輯好后,使用這類工具直接自動小程序代碼,把生成的小程序代碼上傳到微信審核就可以上線自己的小程序了。

三、專業(yè)的微信小程序開發(fā)公司這類企業(yè)都有專門的技術團隊和豐富的開發(fā)經(jīng)驗,商家只要把需求提供給公司,然后跟技術進行交流一下,把你的想法和需求說明,就可以開始了。

商家想要找第三方開發(fā)合作公司要綜合的考察,因為互聯(lián)網(wǎng)的發(fā)展日新月異,公司的發(fā)展時間,有沒有實力,開發(fā)的小程序能不能夠滿足需求等問題一直困擾著客戶。

求一段JAVA編寫的貪吃蛇小程序源代碼

用MVC方式實現(xiàn)的貪吃蛇游戲,共有4個類。運行GreedSnake運行即可。主要是觀察者模式的使用,我已經(jīng)添加了很多注釋了。

1、

/*

* 程序名稱:貪食蛇

* 原作者:BigF

* 修改者:algo

* 說明:我以前也用C寫過這個程序,現(xiàn)在看到BigF用Java寫的這個,發(fā)現(xiàn)雖然作者自稱是Java的初學者,

* 但是明顯編寫程序的素養(yǎng)不錯,程序結構寫得很清晰,有些細微得地方也寫得很簡潔,一時興起之

* 下,我認真解讀了這個程序,發(fā)現(xiàn)數(shù)據(jù)和表現(xiàn)分開得很好,而我近日正在學習MVC設計模式,

* 因此嘗試把程序得結構改了一下,用MVC模式來實現(xiàn),對源程序得改動不多。

* 我同時也為程序增加了一些自己理解得注釋,希望對大家閱讀有幫助。

*/

package mvcTest;

/**

* @author WangYu

* @version 1.0

* Description:

* /pre

* Create on :Date :2005-6-13 Time:15:57:16

* LastModified:

* History:

*/

public class GreedSnake {

public static void main(String[] args) {

SnakeModel model = new SnakeModel(20,30);

SnakeControl control = new SnakeControl(model);

SnakeView view = new SnakeView(model,control);

//添加一個觀察者,讓view成為model的觀察者

model.addObserver(view);

(new Thread(model)).start();

}

}

-------------------------------------------------------------

2、

package mvcTest;

//SnakeControl.java

import java.awt.event.KeyEvent;

import java.awt.event.KeyListener;

/**

* MVC中的Controler,負責接收用戶的操作,并把用戶操作通知Model

*/

public class SnakeControl implements KeyListener{

SnakeModel model;

public SnakeControl(SnakeModel model){

this.model = model;

}

public void keyPressed(KeyEvent e) {

int keyCode = e.getKeyCode();

if (model.running){ // 運行狀態(tài)下,處理的按鍵

switch (keyCode) {

case KeyEvent.VK_UP:

model.changeDirection(SnakeModel.UP);

break;

case KeyEvent.VK_DOWN:

model.changeDirection(SnakeModel.DOWN);

break;

case KeyEvent.VK_LEFT:

model.changeDirection(SnakeModel.LEFT);

break;

case KeyEvent.VK_RIGHT:

model.changeDirection(SnakeModel.RIGHT);

break;

case KeyEvent.VK_ADD:

case KeyEvent.VK_PAGE_UP:

model.speedUp();

break;

case KeyEvent.VK_SUBTRACT:

case KeyEvent.VK_PAGE_DOWN:

model.speedDown();

break;

case KeyEvent.VK_SPACE:

case KeyEvent.VK_P:

model.changePauseState();

break;

default:

}

}

// 任何情況下處理的按鍵,按鍵導致重新啟動游戲

if (keyCode == KeyEvent.VK_R ||

keyCode == KeyEvent.VK_S ||

keyCode == KeyEvent.VK_ENTER) {

model.reset();

}

}

public void keyReleased(KeyEvent e) {

}

public void keyTyped(KeyEvent e) {

}

}

-------------------------------------------------------------

3、

/*

*

*/

package mvcTest;

/**

* 游戲的Model類,負責所有游戲相關數(shù)據(jù)及運行

* @author WangYu

* @version 1.0

* Description:

* /pre

* Create on :Date :2005-6-13 Time:15:58:33

* LastModified:

* History:

*/

//SnakeModel.java

import javax.swing.*;

import java.util.Arrays;

import java.util.LinkedList;

import java.util.Observable;

import java.util.Random;

/**

* 游戲的Model類,負責所有游戲相關數(shù)據(jù)及運行

*/

class SnakeModel extends Observable implements Runnable {

boolean[][] matrix; // 指示位置上有沒蛇體或食物

LinkedList nodeArray = new LinkedList(); // 蛇體

Node food;

int maxX;

int maxY;

int direction = 2; // 蛇運行的方向

boolean running = false; // 運行狀態(tài)

int timeInterval = 200; // 時間間隔,毫秒

double speedChangeRate = 0.75; // 每次得速度變化率

boolean paused = false; // 暫停標志

int score = 0; // 得分

int countMove = 0; // 吃到食物前移動的次數(shù)

// UP and DOWN should be even

// RIGHT and LEFT should be odd

public static final int UP = 2;

public static final int DOWN = 4;

public static final int LEFT = 1;

public static final int RIGHT = 3;

public SnakeModel( int maxX, int maxY) {

this.maxX = maxX;

this.maxY = maxY;

reset();

}

public void reset(){

direction = SnakeModel.UP; // 蛇運行的方向

timeInterval = 200; // 時間間隔,毫秒

paused = false; // 暫停標志

score = 0; // 得分

countMove = 0; // 吃到食物前移動的次數(shù)

// initial matirx, 全部清0

matrix = new boolean[maxX][];

for (int i = 0; i maxX; ++i) {

matrix[i] = new boolean[maxY];

Arrays.fill(matrix[i], false);

}

// initial the snake

// 初始化蛇體,如果橫向位置超過20個,長度為10,否則為橫向位置的一半

int initArrayLength = maxX 20 ? 10 : maxX / 2;

nodeArray.clear();

for (int i = 0; i initArrayLength; ++i) {

int x = maxX / 2 + i;//maxX被初始化為20

int y = maxY / 2; //maxY被初始化為30

//nodeArray[x,y]: [10,15]-[11,15]-[12,15]~~[20,15]

//默認的運行方向向上,所以游戲一開始nodeArray就變?yōu)椋?/p>

// [10,14]-[10,15]-[11,15]-[12,15]~~[19,15]

nodeArray.addLast(new Node(x, y));

matrix[x][y] = true;

}

// 創(chuàng)建食物

food = createFood();

matrix[food.x][food.y] = true;

}

public void changeDirection(int newDirection) {

// 改變的方向不能與原來方向同向或反向

if (direction % 2 != newDirection % 2) {

direction = newDirection;

}

}

/**

* 運行一次

* @return

*/

public boolean moveOn() {

Node n = (Node) nodeArray.getFirst();

int x = n.x;

int y = n.y;

// 根據(jù)方向增減坐標值

switch (direction) {

case UP:

y--;

break;

case DOWN:

y++;

break;

case LEFT:

x--;

break;

case RIGHT:

x++;

break;

}

// 如果新坐標落在有效范圍內,則進行處理

if ((0 = x x maxX) (0 = y y maxY)) {

if (matrix[x][y]) { // 如果新坐標的點上有東西(蛇體或者食物)

if (x == food.x y == food.y) { // 吃到食物,成功

nodeArray.addFirst(food); // 從蛇頭贈長

// 分數(shù)規(guī)則,與移動改變方向的次數(shù)和速度兩個元素有關

int scoreGet = (10000 - 200 * countMove) / timeInterval;

score += scoreGet 0 ? scoreGet : 10;

countMove = 0;

food = createFood(); // 創(chuàng)建新的食物

matrix[food.x][food.y] = true; // 設置食物所在位置

return true;

} else // 吃到蛇體自身,失敗

return false;

} else { // 如果新坐標的點上沒有東西(蛇體),移動蛇體

nodeArray.addFirst(new Node(x, y));

matrix[x][y] = true;

n = (Node) nodeArray.removeLast();

matrix[n.x][n.y] = false;

countMove++;

return true;

}

}

return false; // 觸到邊線,失敗

}

public void run() {

running = true;

while (running) {

try {

Thread.sleep(timeInterval);

} catch (Exception e) {

break;

}

if (!paused) {

if (moveOn()) {

setChanged(); // Model通知View數(shù)據(jù)已經(jīng)更新

notifyObservers();

} else {

JOptionPane.showMessageDialog(null,

"you failed",

"Game Over",

JOptionPane.INFORMATION_MESSAGE);

break;

}

}

}

running = false;

}

private Node createFood() {

int x = 0;

int y = 0;

// 隨機獲取一個有效區(qū)域內的與蛇體和食物不重疊的位置

do {

Random r = new Random();

x = r.nextInt(maxX);

y = r.nextInt(maxY);

} while (matrix[x][y]);

return new Node(x, y);

}

public void speedUp() {

timeInterval *= speedChangeRate;

}

public void speedDown() {

timeInterval /= speedChangeRate;

}

public void changePauseState() {

paused = !paused;

}

public String toString() {

String result = "";

for (int i = 0; i nodeArray.size(); ++i) {

Node n = (Node) nodeArray.get(i);

result += "[" + n.x + "," + n.y + "]";

}

return result;

}

}

class Node {

int x;

int y;

Node(int x, int y) {

this.x = x;

this.y = y;

}

}

------------------------------------------------------------

4、

package mvcTest;

//SnakeView.java

import javax.swing.*;

import java.awt.*;

import java.util.Iterator;

import java.util.LinkedList;

import java.util.Observable;

import java.util.Observer;

/**

* MVC模式中得Viewer,只負責對數(shù)據(jù)的顯示,而不用理會游戲的控制邏輯

*/

public class SnakeView implements Observer {

SnakeControl control = null;

SnakeModel model = null;

JFrame mainFrame;

Canvas paintCanvas;

JLabel labelScore;

public static final int canvasWidth = 200;

public static final int canvasHeight = 300;

public static final int nodeWidth = 10;

public static final int nodeHeight = 10;

public SnakeView(SnakeModel model, SnakeControl control) {

this.model = model;

this.control = control;

mainFrame = new JFrame("GreedSnake");

Container cp = mainFrame.getContentPane();

// 創(chuàng)建頂部的分數(shù)顯示

labelScore = new JLabel("Score:");

cp.add(labelScore, BorderLayout.NORTH);

// 創(chuàng)建中間的游戲顯示區(qū)域

paintCanvas = new Canvas();

paintCanvas.setSize(canvasWidth + 1, canvasHeight + 1);

paintCanvas.addKeyListener(control);

cp.add(paintCanvas, BorderLayout.CENTER);

// 創(chuàng)建底下的幫助欄

JPanel panelButtom = new JPanel();

panelButtom.setLayout(new BorderLayout());

JLabel labelHelp;

labelHelp = new JLabel("PageUp, PageDown for speed;", JLabel.CENTER);

panelButtom.add(labelHelp, BorderLayout.NORTH);

labelHelp = new JLabel("ENTER or R or S for start;", JLabel.CENTER);

panelButtom.add(labelHelp, BorderLayout.CENTER);

labelHelp = new JLabel("SPACE or P for pause", JLabel.CENTER);

panelButtom.add(labelHelp, BorderLayout.SOUTH);

cp.add(panelButtom, BorderLayout.SOUTH);

mainFrame.addKeyListener(control);

mainFrame.pack();

mainFrame.setResizable(false);

mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

mainFrame.setVisible(true);

}

void repaint() {

Graphics g = paintCanvas.getGraphics();

//draw background

g.setColor(Color.WHITE);

g.fillRect(0, 0, canvasWidth, canvasHeight);

// draw the snake

g.setColor(Color.BLACK);

LinkedList na = model.nodeArray;

Iterator it = na.iterator();

while (it.hasNext()) {

Node n = (Node) it.next();

drawNode(g, n);

}

// draw the food

g.setColor(Color.RED);

Node n = model.food;

drawNode(g, n);

updateScore();

}

private void drawNode(Graphics g, Node n) {

g.fillRect(n.x * nodeWidth,

n.y * nodeHeight,

nodeWidth - 1,

nodeHeight - 1);

}

public void updateScore() {

String s = "Score: " + model.score;

labelScore.setText(s);

}

public void update(Observable o, Object arg) {

repaint();

}

}

希望采納

小程序開發(fā)源代碼大全的介紹就聊到這里吧,感謝你花時間閱讀本站內容,更多關于小程序示例官方源代碼、小程序開發(fā)源代碼大全的信息別忘了在本站進行查找喔。

掃碼二維碼