來個小代碼
#include <stdio.h>#include <Windows.h>int main(void) { int minutes,i; printf("請輸入分鍾數:"); scanf("minutes"); for (; minutes >= 0; --minutes) { for (int i = 60; i >= 0; --i) { printf("還剩 %d 分鍾 %d 秒 結束\n", minutes, i);//輸出剩餘時間 Sleep(1000);//延時函數延時一秒 }; }; printf("計時結束\n"); system("PAUSE"); return 0;
};
//我再別人那裡改了一下可以用試過了
⑵ 想寫一個小程序,代碼怎麼寫
不建議使用固定模板來製作小程序,靈活性比較差,建議如下:
1、(自行解決)如果只是想圖片這種,簡單的微商城上產品的話,微信公眾號的後台即可實現,不用花錢,這個可以自行研究一下,不難的,但可能美觀性和功能性有待商榷;
2、(購買專業團隊的服務)可以找人幫忙做,看開發工作量。客戶先考慮清楚該小程序要達到什麼目的,或解決什麼問題,要有哪些功能,充分溝通後,服務商再定設計人員與前後端技術人員的工作量,及開發周期,最後得出報價。所以,有的小程序1萬就可做,有的則要幾萬,十幾萬,合情合理,關鍵是從實際出發,從需求出發。
⑶ 求一個100行左右的小代碼。
|代碼很亂,見笑。因為空格不好顯示,我用x代表空格。
#include <stdio.h>
int isFactorOf7(int n){
if(n%7 == 0){return 1;} else {return 0;}
}
int contains7(int n){
int t = n/10;
if(t == 7){return 1;
} else{
if((n-7) == 0){return 1;} else{return 0;}
}
}
int main(){
int startn = 0;
scanf("%d",&startn);
for(;startn<=100;startn ){
if(isFactorOf7(startn) || contains7(startn)){
printf("x ");
} else{
printf("%d ",startn);
}
}
return 0;
}
⑷ 求一個簡單的VB小游戲代碼
SELECT
b.BANKCD,
b.BANKNM,
BANKSNM,
(
SELECT
count( k.BANKCD)
FROM
BANKSMST1 k,
BANKSMST2 l
WHERE
k.BANKCD = 0001
AND l.BANKCD = 0001
AND rownum = 1
)
FROM
(
SELECT
c.BANKCD,
c.BANKNM,
⑸ 哪個給我個VB小程序的代碼娛樂好玩的小代碼
http://download.csdn.net/sort/tag/VB%E6%B8%B8%E6%88%8F%E4%BB%A3%E7%A0%81這有一個猜字游戲,已經編寫好的。你下載下來以後,打開,按版F5直接運行就可以了權。
⑹ 求一個小程序的代碼,謝謝!
Pascal 的:
program Apascal;
Var n:integer;
x,y:longint;
Begin
Clrscr;
Write(『Please input x,y』)
Readln(x,y);
n:=0;
While x<y do begin
x:=x+x*0.02;
n:=n+1;
End;
Writeln(n);
End.
⑺ 求個c語言小代碼,很簡單的倒計時程序
#include<stdio.h>
#include<windows.h>
intmain(void)
{
inta;
a=0;
boolup=true;
system("color0A");
while(true)
{
system("cls");
printf("%d a",a);
Sleep(100);
if(up)
{
a++;
}
if(!up)
{
a--;
}
if(a==0)
{
up=true;
}
if(a==100)
{
up=false;
}
}
return0;
}
⑻ 求一個用C語言編寫的小游戲代碼
/*也不知道你是什麼級別的,我是一個
新手
,剛接觸
編程語言
,以下是我自己變得一個小
程序
,在所有c語言的編譯器(vc++6.0、turbo…………)上都能運行,你還可以進一步改進。這是一個類似
貪吃蛇
的
小游戲
。
祝你好運
*/
/*貪吃蛇*/
#include<stdio.h>
#include<time.h>
#include<conio.h>
#include<stdlib.h>
int
head=3
,tail=0;
int
main()
{
int
i,j,k=0;
int
zuobiao[2][80];
long
start;
int
direction=77;
int
gamespeed;
int
timeover;
int
change(char
qipan[20][80],int
zuobiao[2][80],char
direction);
zuobiao[0][tail]=1;zuobiao[1][tail]=1;zuobiao[0][1]=1;zuobiao[1][1]=2;zuobiao[0][2]=1;zuobiao[1][2]=3;zuobiao[0][head]=1;zuobiao[1][head]=4;
/*處理棋盤*/
char
qipan[20][80];//
定義
棋盤
for(i=0;i<20;i++)
for(j=0;j<80;j++)
qipan[i][j]='
';//
初始化
棋盤
for(i=0;i<80;i++)
qipan[0][i]='_';
for(i=0;i<20;i++)
qipan[i][0]='|';
for(i=0;i<20;i++)
qipan[i][79]='|';
for(i=0;i<80;i++)
qipan[19][i]='_';
qipan[1][1]=qipan[1][2]=qipan[1][3]='*';//初始化蛇的位置
qipan[1][4]='#';
printf("This
is
a
game
of
a
SNAKE.
GOOD
LUCK
TO
YOU
!
");
printf("Input
your
game
speed,please.(e.g.300)
");
scanf("%d",&gamespeed);
while(direction!='q')
{
system("cls");
for(i=0;i<20;i++)//列印出棋盤
for(j=0;j<80;j++)
printf("%c",qipan[i][j]);
timeover=1;
start=clock();
while(!kbhit()&&(timeover=clock()-start<=gamespeed));
if(timeover)
{
getch();
direction=getch();
}
else
direction=direction;
if(!(direction==72||direction==80||direction==75||direction==77))
{
return
0;
system("cls");
printf("GAME
OVER!
");
}
if(!change(qipan,zuobiao,direction))
{
direction='q';
system("cls");
printf("GAME
OVER!
");
}
}
return
0;
}
int
change(char
qipan[20][80],int
zuobiao[2][80],char
direction)
{
int
x,y;
if(direction==72)
x=zuobiao[0][head]-1;y=zuobiao[1][head];
if(direction==80)
x=zuobiao[0][head]+1;y=zuobiao[1][head];
if(direction==75)
x=zuobiao[0][head];y=zuobiao[0][head]-1;
if(direction==77)
x=zuobiao[0][head];y=zuobiao[1][head]+1;
if(x==0||x==18||y==78||y==0)
return
0;
if(qipan[x][y]!='
')
return
0;
qipan[zuobiao[0][tail]][zuobiao[1][tail]]='
';
tail=(tail+1)%80;
qipan[zuobiao[0][head]][zuobiao[1][head]]='*';
head=(head+1)%80;
zuobiao[0][head]=x;
zuobiao[1][head]=y;
qipan[zuobiao[0][head]][zuobiao[1][head]]='#';
return
1;
}