文件名称:flash加减法
文件大小:99KB
文件格式:SWF
更新时间:2015-12-17 02:50:20
flash 加减法 课件
自学时做的
/************加法*********************/
//Math是一个内置类和影片剪辑类 类似的内置核心类
a1.text=String(Math.round(Math.round(Math.random()*100)/2));
//Math类中的取随机数的方法,是指是0~1之间
b1.text=String(Math.round(Math.round(Math.random()*100)/2));
//以上为首次运行时2个加数的值
function js1(s:MouseEvent):void {
var a11,b11,c11:uint;
a11=uint(a1.text);
b11=uint(b1.text);
c11=uint(c1.text);
//trace (a,b,c);
if (c11 == (a11 + b11)) {
//以上5行可以简写成if(uint(a1.text)+uint(b1.text)==uint(c1.text))
pd1.text="你真棒!";
} else {
pd1.text="再想想?";
c11=uint(c1.text);//再次输入的答案重新赋值给c
}
}
function goon1(s:MouseEvent):void {
//以下是两个加数重新赋值,答案为空。
a1.text=String(Math.round(Math.round(Math.random()*100)/2));
b1.text=String(Math.round(Math.round(Math.random()*100)/2));
c1.text="";
pd1.text = "";
}
an1.addEventListener(MouseEvent.CLICK,js1);
an2.addEventListener(MouseEvent.CLICK,goon1);
/*******************减法****************************/
var tmp:uint;
var a:uint=Math.round(Math.round(Math.random()*100)/2);
var b:uint=Math.round(Math.round(Math.random()*100)/2);
if (a