第二章作业

 乘法口诀

index.wxml

 <view class= "pageview">
<view class="kou">乘法口诀</view>
  <block wx:for="{{[1,2,3,4,5,6,7,8,9]}}" wx:for-item="line">
    <view class="lineview">
      <block wx:for="{{[1,2,3,4,5,6,7,8,9]}}" wx:for-item="col">
        <block wx:if="{{col>=line}}">
          <view class="columnview">
            {{line}}*{{col}}={{line*col}}
          </view>
        </block>
      </block>
    </view>
  </block>
</view>
 

index.wxss

 
.pageview{
  width: 100%;
  height: 100vh;
}
.kou{
  text-align: center;
  margin-bottom: 20px;
}
.lineview{
  width: 100%;
  height: 5%;
  display: flex;
}
.columnview{
  width: 10%;
  height: 100%;
  font-size: 10px;
}

运行结果

控制台输出水仙花

.js

//index.js
Page({
  onLoad: function () {
    // 调用输出水仙花数的函数
    this.outputDaffodilNumbers();
  },
 
  outputDaffodilNumbers: function () {
    console.log("水仙花数:");
 
    // 遍历三位数的范围
    for (let i = 100; i < 1000; i++) {
      // 获取个位、十位、百位数字
      let unit = i % 10;
      let ten = Math.floor(i / 10) % 10;
      let hundred = Math.floor(i / 100);
 
      // 判断是否为水仙花数
      if (Math.pow(unit, 3) + Math.pow(ten, 3) + Math.pow(hundred, 3) === i) {
        console.log(i);
      }
    }
  },
});

 运行结果

 水仙花数

.js

Page({ 
  data:{
  narcissisticNumbers: []
},
  onLoad: function () {
  this.findNarcissisticNumbers();
},
  findNarcissisticNumbers: 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({
  narcissisticNumbers: numbers});}
  });

.wxml

<view class="container">
<view class="narcissistic-numbers">水仙花数:
<text wx:for="{{narcissisticNumbers}}" wx:key="*this">{{item}},</text></view>
</view>

.wxss

.container { 
  flex-direction: column;
   align-items: center;
   height: 100vh;
}
  .narcissistic-numbers { 
    margin-top: 20px;
  }

运行结果

菱形图案

.js

Page({
  data:{
    Array:['    *   ', '   ***   ', ' ***** ','*******', '*********','*******','  ***** ', '   ***    ', '    *   ']
  }
})

.wxml

<view class="Array">
<view class="lingxing">菱形</view>
  <block wx:for="{{Array}}" wx:for-item="item" wx:for-index="index">
  <text class="item">{{item}}</text>
  </block>
</view>

.wxss

.Array{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lingxing{
  text-align: center;
  margin-top: 30px;
}
.item{
  font-size: 20px;
  margin-bottom: 10px;
}

 运行结果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值