代码作业1:
1. 运用所学知识完成加法器 a) 用户输入第一个数 b) 用户输入第二个数 c) 最后以 “ 最终的结果为 xx” 输出<script>
var a = prompt('number1'),
b = prompt('number2');
var c = Number(a)+Number(b);
document.write("a+"+"b="+c);
</script>
作业代码2:
名叫 cute 的人去酒店前台登记入住,需要填一张表,内容包括:姓名,年龄,家庭住址,邮箱和工 资,存储后需要展出以下内容:我叫 cute ,我今年 21 岁,我住在航空星球,我的邮箱是 [email protected] om ,我工资是 1000 元。<script>
var name = prompt('请输入你的名字');
var age = prompt('请输入你的年龄');
var address = prompt('请输入你的家庭住址');
var email = prompt('请输入你的邮箱');
var price = prompt('请输入你的工资');
var text ='我叫' + name + ',' + '我今年' + age + '岁,' + '我住在' + address + ',' + '我的邮箱是' + email + ',' + '我工资是' + price + '元。';
document.write(text);
</script>
作业代码3:
交换变量,有一个变量存储 ” 红苹果 ” 数据 , 另一个变量存储 ” 绿苹果数据 ”, 交换两个变量中的数据输出<script>
var a;
var apple1 = '红苹果';
var apple2 = '绿苹果';
console.log(apple1); // 红苹果
console.log(apple2); //绿苹果
a=apple1;
apple1=apple2;
apple2=a;
console.log(apple1); // 绿苹果
console.log(apple2); // 红苹果
</script>
标签:prompt,JavaScript,基础,apple2,苹果,apple1,var,输入 From: https://blog.csdn.net/2401_84270142/article/details/140644466