猜数字游戏 麻烦帮忙写个编程

编程:单击“开始”按钮,程序产生一个随机数;在文本框中输入一个猜想的整数,单击“猜”按钮;根据标签控件的显示文字的提示(提示一:“你猜大了,再试一次吧”;提示二:“你猜小了,再试一次吧”;提示三:“恭喜,你猜对了,共用了N次,再来一次吧”)。
注:随机函数Rnd()可产生一个0~1之间的单精度数。
提示:程序中,要定义一个窗体级变量,来保存程序产生的随机数。

VB的,每点一次按钮猜一次

Dim i%, x%, s%, y%

Private Sub Command1_Click()
If i = 0 Then
Randomize
x = Int(Rnd * 101)
End If

i = i + 1
If i > 10 Then
MsgBox "错了10次了呀!!"
End
End If

y = Val(InputBox("请猜猜是多少吧!!", "这是第" & i & "次"))

If x = y Then
s = s + 10
If s = 100 Then
MsgBox "神机妙算!"
Exit Sub
End If
MsgBox "完全正确!你现在有" & s & "分了!"

i = 0
End If

If y > x Then MsgBox "太大了!"
If y < x Then MsgBox "太小了!"
End Sub
温馨提示:内容为网友见解,仅供参考
无其他回答

java简单代码小游戏?
求一个简单又有趣的JAVA小游戏代码System.out.println(猜数字游戏,请输入一个数0到999999,输入-1结束游戏:);inti=sc.nextInt();if(i==-1){break;}count++;if(ir){System.out.print(你猜小了。System.out.println(helloworld!);}}基本概念Java是一种可以撰写跨平台应用软件的面向对象的...

猜数字游戏C语言编程
include void main(){ int magic,guess,k;char over,c;printf("退出游戏请输入z\\n");do { srand (time(NULL));magic=rand()%100+1;printf("请输入猜测的数字1~100\\n");for(k=0;guess!=magic;k++){ scanf("%d",&guess);if (guess==magic)printf("恭喜,你猜对了!\\n");scanf(...

C语言编程,猜数字游戏,求解!
include<stdio.h> int main (){ int guess[4],answer[4]={1,3,5,2},a=0,b,times=0,i,j;;printf("please guess\\n");while(a!=4){ a=0;b=0;times++;\/\/printf("%d ",times);printf("输入你猜的数字 ");for(i=0;i<4;i++)scanf("%d",&guess[i]); \/\/你要说...

c语言编程 编一个猜数字游戏
源码如下:\/* File: guess.c *\/ include <stdio.h> \/* standard input & output support *\/ include <stdlib.h> \/* srand() rand() *\/ include \/* time() *\/ \/* 宏定义 *\/ define NUMBER_LENGTH 5 \/* 随机数长度 *\/ define NUMBER_LIMIT 10 \/* 随机数限制, 每...

c#编程猜数字游戏,输入四个数,显示正确的个数。刚刚接触c#,求大神帮忙...
\/*c#编程猜数字游戏,输入四个数,显示正确的个数。*\/ Random rm = new Random();\/\/声明一个random对象,通过这个对象可以调用random类中的方法 int[] array=new int[4];\/\/声明一个含有4个元素的一位数组 int[] array1=new int[4];int count=0;\/\/计数,看你答对了几个数 \/\/产生4个...

猜数字游戏c语言编程一到五?
终端编码问题,我用了英文,但功能是完整的,图一乐:include <stdio.h> include <stdlib.h> include int main() { int key, input;srand(time(NULL));key = rand() % 5 + 1;printf("Guess who am I? (from 1 to 5, 0 for exit)\\n");printf("Your answer: ");while (1) {...

用Java编程实现一个猜数字的游戏:系统随机产生一个1~100的数字,然后让...
1.int num = (int)(Math.random()*100+1);\/\/随机得出一个1~100的数 2.用一个变量去接收玩家输入的数,例如int i;3.用if语句,当玩家输入的数与随机数相等时(i==num),则输出语句(恭喜你猜对了).4.用else写出猜错是的语句.大致思路就是这样.建议你自己去写,只有自己写过才会懂.如有不...

VB中猜数字游戏请高手帮忙啊。
s = CInt(InputBox("请输入猜测数字!"))If a = s Then MsgBox ("恭喜你猜对了")End End If If a > s Then MsgBox ("对不起,你猜小了!")End If If a < s Then MsgBox ("对不起,你猜大了!")End If Next i End 这就是主要代码了,至于你说要两个窗体,个人感觉有点多余 ...

急求猜数字小游戏代码
import java.awt.event.*;import javax.swing.event.*;class Guess extends JFrame implements ActionListener{ int rand;JLabel label = new JLabel("Enter whole number:");JLabel label_image = new JLabel( new ImageIcon("10.gif"));JTextField textfield = new JTextField(15);JButton ...

猜数字游戏0-1000之间,用JAVA编程
这简单,代码如下,这是我用记事本写的,没运行过可能有点问题,你修改下就可以了,创建个类以Number 命名,然后直接复制粘贴就可以了。希望能帮到你!import java.util.Scanner;public class number { public static void main(String[] args) {do{ int i = 0; int random = (int) (Math....

相似回答
大家正在搜