上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 33 下一页
摘要: 问题描述 1221是一个非常特殊的数,它从左边读和从右边读是一样的,编程求所有这样的四位十进制数。 输出格式 按从小到大的顺序输出满足条件的四位十进制数。 解答 #include<iostream> using namespace std; int main() { int n, a[5]; for 阅读全文
posted @ 2022-03-26 18:37 又一岁荣枯 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 使用库函数输出 C语言输出 printf("%05o\n",35); //按八进制格式输出,保留5位高位补零 printf("%03d\n",35); //按十进制格式输出,保留3位高位补零 printf("%05x\n",35); //按十六进制格式输出,保留5位高位补零 c++输出 c++输出十 阅读全文
posted @ 2022-03-25 19:29 又一岁荣枯 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 常用函数 1. max()、min()、abs()比较数字 这个在math头文件也可以,浮点型的绝对值要用math的fabs #include <iostream> using namespace std; int main() { int a, b; cin >> a >> b; cout << 阅读全文
posted @ 2022-03-25 15:33 又一岁荣枯 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 原因:由于相机产生的临时文件无法下载,需要转码为base64格式 var base64=wx.getFileSystemManager().readFileSync(res.tempImagePath, 'base64') 阅读全文
posted @ 2022-03-22 22:03 又一岁荣枯 阅读(4124) 评论(0) 推荐(0) 编辑
摘要: 调用云函数时小程序报错: WAServiceMainContext.js:2 Error: cloud.callFunction:fail Error: errCode: -504002 functions execute fail | errMsg: Error: 参数值错误 (需要有效的Imag 阅读全文
posted @ 2022-03-22 21:34 又一岁荣枯 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: 进入官网查看是否开通服务 https://console.cloud.tencent.com/tiia/detectlabel 未开通则点击开通服务即可 阅读全文
posted @ 2022-03-22 21:19 又一岁荣枯 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 腾讯云中参数填写不完整,在node.js中填写即可 阅读全文
posted @ 2022-03-22 20:26 又一岁荣枯 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 将wx.cloud.init()注释掉即可 阅读全文
posted @ 2022-03-22 19:38 又一岁荣枯 阅读(560) 评论(0) 推荐(0) 编辑
摘要: git push 报错: 提交时加上参数:-a ,表示新增。 git commit -am "提交说明" 提交成功。 阅读全文
posted @ 2022-03-22 09:37 又一岁荣枯 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 云函数add(用来求a+b的和) 1. 选择新建node.js 2. 在index.js中写入云函数 // 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init() // 云函数入口函数 exports.main = async (eve 阅读全文
posted @ 2022-03-20 20:37 又一岁荣枯 阅读(1910) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 33 下一页