来个小代码
#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;
}