摘要: 关键: position: fixed; wxml: <navigator url="/pages/issue/index"><image class='img' src='/assets/images/Home/add.png' bindtap='add'></image></navigator> 阅读全文
posted @ 2021-06-05 21:53 BingeBlog 阅读(615) 评论(0) 推荐(0) 编辑
摘要: c语言求输入的任一整数的各位数之和 c语言求解代码: # include<stdio.h> int main(void){ int a,i=0,sum=0; scanf("%d",&a); if(a<0) a=-a;//求负整数的 while(a){ sum+=(a%10);//sum存各位数之和 a/=10; } printf("各 阅读全文
posted @ 2021-05-25 12:16 BingeBlog 阅读(1494) 评论(0) 推荐(0) 编辑
摘要: wxml: <!--导航条--><view class="navbar"> <text wx:for="{{navbar}}" data-idx="{{index}}" class="item {{currentTab==index ? 'active' : ''}}" wx:key="unique 阅读全文
posted @ 2021-05-15 23:56 BingeBlog 阅读(481) 评论(0) 推荐(0) 编辑