<div>课程地址: http://icourse8.com/VueQuanzhan.html </div>
<h1> http://icourse8.com/VueQuanzhan.html </h1>目录
第1章 课程介绍
第2章 Vue基础
第3章 Vue-router
第4章 Vue-resource/Axios
第5章 ES6常用语法 第6章 商品列表模块实现
第7章 Node.js基础 第8章 MongoDB介绍
第9章 基于Node.js开发商品列表接口
第10章 登录模块实现
第11章 购物车模块实现
第12章 地址模块实现
第13章 订单确认模块实现
第14章 订单成功模块实现
第15章 基于Vuex改造登录和购物车数量功能
第16章 Webpack使用
第17章 线上部署
第18章 课程总结
第19章 针对第六章和第八章大家提出的问题,补充视频
class Solution {
public boolean isPowerOfThree(int n) {
if(n==0)
return false;
if(n==Math.pow(3,0)|n==Math.pow(3,2)|n==Math.pow(3,1)|n==Math.pow(3,2)|n==Math.pow(3,3)|n==Math.pow(3,4)|n==Math.pow(3,5)|n==Math.pow(3,6)|n==Math.pow(3,7)|n==Math.pow(3,8)|n==Math.pow(3,9)|n==Math.pow(3,10)|n==Math.pow(3,11)|n==Math.pow(3,12)|n==Math.pow(3,13)|n==Math.pow(3,14)|n==Math.pow(3,15)|n==Math.pow(3,16)|n==Math.pow(3,17)|n==Math.pow(3,18)|n==Math.pow(3,19)|n==Math.pow(3,20))
return true;
return false;
}
}