第二章作业

1.利用wx:if及wx:for数据绑定来实现输出乘法口诀表(图2-21)的编程

{
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "九九乘法表(dtq)",
  "navigationBarTextStyle": "black",
  "backgroundTextStyle": "light"
}

//bh.wxml
<view class="AV" wx:for="{{[1,2,3,4,5,6,7,8,9]}}" wx:for-item="row">
<view class="av" wx:for="{{[1,2,3,4,5,6,7,8,9]}}" wx:if="{{col<=row}}" wx:for-item="col">
                  {{col}}*{{row}}={{col*row}}
</view>
</view>



/** bh.wxss **/
 

.AV{
  display: flex;           
  justify-content: left;
  font-size: 8px;
}
.AV.av{
  width: 40px;
}

 

2.编写程序,在Console 控制台输出水仙花数(水仙花数是指一个3位数的各位上的数字的3次幂之和等于它本身。

//bh.js
Page({
  data: {
Numbers:[]
  },
onLoad:function(){
  this.findNumbers();
},
findNumbers:function (){
  const numbers=[];
  for (let  i=100;i<1000;i++){
    const a=Math.floor(i/100);
    const b=Math.floor((i%100)/10);const c=i%10;if (a**3+b**3+c**3===i){
      numbers.push(i);}}
      this.setData({
        Numbers:numbers
      });
    }
  });


//bh.json
{
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "水仙花数",
  "navigationBarTextStyle": "black",
  "backgroundTextStyle": "light"
}


//bh.wxml
<text> 水仙花数共有:</text>
<view class="cj">
<view class="cj2">
<text wx:for="{{Numbers}}" wx:key="*this">{{item}}
</text>
</view>
</view>

/** bh.wxss **/

.cj{
  display: flex;
  flex-direction: column;
  align-items: column;
  justify-content: center;
  height: 100vh;
}
.cj2{
  margin-top:20px;
}
.cj2 text{
  display: block;
  margin-bottom: 20px;
}

3.编写程序,在页面中输出水仙花数 

//bh.js
Page({
  data: {
Numbers:[]
  },
onLoad:function(){
  this.findNumbers();
},
findNumbers:function (){
  const numbers=[];
  for (let  i=100;i<1000;i++){
    const a=Math.floor(i/100);
    const b=Math.floor((i%100)/10);const c=i%10;if (a**3+b**3+c**3===i){
      numbers.push(i);}}
      this.setData({
        Numbers:numbers
      });
    }
  });


//bh.json
{
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "水仙花数",
  "navigationBarTextStyle": "black",
  "backgroundTextStyle": "light"
}


//bh.wxml
<text> 水仙花数共有:</text>
<view class="cj">
<view class="cj2">
<text wx:for="{{Numbers}}" wx:key="*this">{{item}}
</text>
</view>
</view>

/** bh.wxss **/

.cj{
  display: flex;
  flex-direction: column;
  align-items: column;
  justify-content: center;
  height: 100vh;
}
.cj2{
  margin-top:20px;
}
.cj2 text{
  display: block;
  margin-bottom: 20px;
}

 

4.编写程序,在页面中输出菱形图案

//bh.js
Page({
  data: {
cnmArray:['*','***','*****','*******','*********','*********','*******','*****','***','*']
  },
  onLoad() {
 
  },
  onReady() {
 
  },
  onShow() {
 
  },
  onHide() {
 
  },
  onUnload() {
 
  },
  onPullDownRefresh() {
 
  },
  onReachBottom() {
 
  },
  onShareAppMessage() {
 
  }
})


//bh.json
{
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "菱形",
  "navigationBarTextStyle": "black",
  "backgroundTextStyle": "light"
}



//bh.wxml
<view class="cnm">
<block wx:for="{{cnmArray}}" wx:for-item="item" wx:for-bh="bh">
<text class="cnm-item">{{item}}</text></block></view>


/** bh.wxss **/
.cnm{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cnm-item{
  font-size: 20px;
}

 

  • 8
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值