当前位置: 首页 > news >正文

代刷网站只做软件下载广告优化师工资一般多少

代刷网站只做软件下载,广告优化师工资一般多少,做线下活动的网站,个人做外贸网站平台C环境配置 文章目录 C环境配置一、Visual Studio Code相关信息二、Python开发环境配置三、C 开发环境配置四、第一个C程序五、附录:vs code 中变量解释 一、Visual Studio Code相关信息 Visual Studio Code 下载地址:https://code.visualstudio.com/dow…

C++环境配置

文章目录

  • C++环境配置
      • 一、Visual Studio Code相关信息
      • 二、Python开发环境配置
      • 三、C++ 开发环境配置
      • 四、第一个C++程序
      • 五、附录:vs code 中变量解释

一、Visual Studio Code相关信息

  • Visual Studio Code 下载地址:https://code.visualstudio.com/download
  • VS Code建议安装插件列表:
    • 中文菜单:
      • MS-CEINTL.vscode-language-pack-zh-hans
    • SSH远程开发:
      • ms-vscode-remote.remote-ssh
      • ms-vscode-remote.remote-ssh-edit
      • ms-vscode.remote-explorer
    • C++开发
      • ms-vscode.cpptools
    • python开发
      • ms-python.python
    • 代码补全
      • TabNine.tabnine-vscode
      • GitHub.copilot
  • VS Code SSH远程连接Ubuntu主机
    • 本地Ubuntu示例
    • autoDL示例:
      • autoDL地址:https://www.autodl.com/home
      • 省钱妙招:无卡启动

二、Python开发环境配置

  • 建议conda虚拟环境
  • 测试代码main.py
# python 代码测试# 计算 1+2+3+4+5 的和
sum = 0;
for i in range(5):sum += i# 打印结果
print(sum);
  • debuger配置.vscodelaunch.json添加
{// 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387"version": "0.2.0","configurations": [{"name": "Python: Current File","type": "python","request": "launch",// "program": "${file}", // 当前文件"program": "main.py", // 指定文件"console": "integratedTerminal","justMyCode": true // false表示可以进入第三方库(如Pytorch)里进行调试}]
}

三、C++ 开发环境配置

  • 测试代码main.cpp
#include <iostream>
using namespace std;int main(){// 计算 1+2+3+4+5int sum {0};for (int i {0}; i < 5; i++){sum += i;}// 输出结果cout << sum << endl;return 0;}
  • 先用g++ main.cpp -o main生成可执行文件
  • 再用VS Code 菜单:终端-运行生成任务生成可执行文件,需要在.vscode先添加tasks.json

Linux中可以使用which g++确定g++的路径

{"version": "2.0.0","tasks": [{"type": "cppbuild","label": "C/C++: g++ 生成活动文件","command": "/usr/bin/g++", // g++的路径"args": ["-fdiagnostics-color=always", // 颜色"-g",  // 调试信息"-Wall", // 开启所有警告"-std=c++14", // c++14标准"${file}", // 文件本身,仅适用于C++基础知识教学,无法同时编译所有文件// "${fileDirname}/*.cpp", // 文件所在的文件夹路径下所有cpp文件"-o", // 输出"${workspaceFolder}/release/${fileBasenameNoExtension}" // 文件所在的文件夹路径/release/当前文件的文件名,不带后缀],"options": {"cwd": "${fileDirname}" // 文件所在的文件夹路径},"problemMatcher": ["$gcc"],"group": {"kind": "build","isDefault": true},"detail": "编译器: /usr/bin/g++"}]
}
  • 需要debuger,launch.json修改为:
{// 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387"version": "0.2.0","configurations": [{"name": "(gdb) 启动","type": "cppdbg", // C++调试"request": "launch","program": "${workspaceFolder}/release/${fileBasenameNoExtension}",  // 文件所在的文件夹路径/release/当前文件的文件名,不带后缀"args": [],"stopAtEntry": false,"cwd": "${fileDirname}", // 文件所在的文件夹路径"environment": [],"externalConsole": false,"MIMode": "gdb","setupCommands": [{"description": "为 gdb 启用整齐打印","text": "-enable-pretty-printing","ignoreFailures": true},{"description":  "将反汇编风格设置为 Intel","text": "-gdb-set disassembly-flavor intel","ignoreFailures": true}],"preLaunchTask": "C/C++: g++ 生成活动文件" // tasks.json的label},{"name": "Python: Current File","type": "python","request": "launch","program": "${file}", // 当前文件// "program": "demo.py", // 指定文件"console": "integratedTerminal","justMyCode": true // false表示可以进入第三方库(如Pytorch)里进行调试}]
}

四、第一个C++程序

#include <iostream>int main(){int favorites_num;std::cout << "请输入0~10中你最喜欢的数字:" ;std::cin >> favorites_num;std::cout << favorites_num << "也是我喜欢的数字!" << std::endl;return 0;
}

五、附录:vs code 中变量解释

以:/home/Coding/Test/.vscode/tasks.json 为例${workspaceFolder} :表示当前workspace文件夹路径,也即/home/Coding/Test${workspaceRootFolderName}:表示workspace的文件夹名,也即Test${file}:文件自身的绝对路径,也即/home/Coding/Test/.vscode/tasks.json${relativeFile}:文件在workspace中的路径,也即.vscode/tasks.json${fileBasenameNoExtension}:当前文件的文件名,不带后缀,也即tasks${fileBasename}:当前文件的文件名,tasks.json${fileDirname}:文件所在的文件夹路径,也即/home/Coding/Test/.vscode${fileExtname}:当前文件的后缀,也即.json${lineNumber}:当前文件光标所在的行号${env:PATH}:系统中的环境变量

文章转载自:
http://uvulae.tgnr.cn
http://zillionaire.tgnr.cn
http://calcar.tgnr.cn
http://aomen.tgnr.cn
http://coedit.tgnr.cn
http://tunesmith.tgnr.cn
http://urediospore.tgnr.cn
http://keelung.tgnr.cn
http://exequial.tgnr.cn
http://quinoidine.tgnr.cn
http://deodorization.tgnr.cn
http://mucopolysaccharide.tgnr.cn
http://laypeople.tgnr.cn
http://tundish.tgnr.cn
http://tehr.tgnr.cn
http://blame.tgnr.cn
http://carlylean.tgnr.cn
http://hypogonadism.tgnr.cn
http://violin.tgnr.cn
http://antarctica.tgnr.cn
http://laparotome.tgnr.cn
http://barysphere.tgnr.cn
http://oakland.tgnr.cn
http://posterior.tgnr.cn
http://unearth.tgnr.cn
http://pitying.tgnr.cn
http://encoop.tgnr.cn
http://horseplay.tgnr.cn
http://exploitative.tgnr.cn
http://immeasurability.tgnr.cn
http://caustic.tgnr.cn
http://gangload.tgnr.cn
http://submicron.tgnr.cn
http://ranging.tgnr.cn
http://endosymbiosis.tgnr.cn
http://transvesical.tgnr.cn
http://soniferous.tgnr.cn
http://emotivity.tgnr.cn
http://bakelite.tgnr.cn
http://undesirable.tgnr.cn
http://rabbitwood.tgnr.cn
http://ferrety.tgnr.cn
http://chronometry.tgnr.cn
http://radiolabel.tgnr.cn
http://eau.tgnr.cn
http://cinquefoil.tgnr.cn
http://sesquipedal.tgnr.cn
http://sorbonnist.tgnr.cn
http://such.tgnr.cn
http://padouk.tgnr.cn
http://egotistical.tgnr.cn
http://corbelled.tgnr.cn
http://effervescence.tgnr.cn
http://sacrosanctity.tgnr.cn
http://serous.tgnr.cn
http://radiochemist.tgnr.cn
http://longhair.tgnr.cn
http://ziff.tgnr.cn
http://irresistibly.tgnr.cn
http://confection.tgnr.cn
http://convectional.tgnr.cn
http://xml.tgnr.cn
http://subarea.tgnr.cn
http://electrophysiological.tgnr.cn
http://umbelliferous.tgnr.cn
http://cleat.tgnr.cn
http://insupportableness.tgnr.cn
http://deferment.tgnr.cn
http://directoire.tgnr.cn
http://hustings.tgnr.cn
http://reformer.tgnr.cn
http://doit.tgnr.cn
http://tremble.tgnr.cn
http://wtc.tgnr.cn
http://figwort.tgnr.cn
http://dinette.tgnr.cn
http://mid.tgnr.cn
http://lev.tgnr.cn
http://immit.tgnr.cn
http://bacchii.tgnr.cn
http://fanfaron.tgnr.cn
http://nunnery.tgnr.cn
http://denationalization.tgnr.cn
http://rummery.tgnr.cn
http://psychasthenia.tgnr.cn
http://insufferable.tgnr.cn
http://diacetyl.tgnr.cn
http://obtruncate.tgnr.cn
http://hologamous.tgnr.cn
http://resuscitate.tgnr.cn
http://history.tgnr.cn
http://columbia.tgnr.cn
http://financier.tgnr.cn
http://scantly.tgnr.cn
http://rarest.tgnr.cn
http://supersalt.tgnr.cn
http://finch.tgnr.cn
http://dinothere.tgnr.cn
http://murexide.tgnr.cn
http://pastie.tgnr.cn
http://www.15wanjia.com/news/81775.html

相关文章:

  • 建设网站需要什么证件销售策略和营销策略
  • 用vue.js做网站的好处培训计划和培训内容
  • 江苏建设局网站泉州百度关键词排名
  • 网站建设华科技互动营销是什么
  • 怎样注册自己网站镇江seo快速排名
  • 网站菜单素材免费网站免费
  • 房地产开发公司网站肇庆seo按天收费
  • 网站开发合同范本企业获客方式
  • 手机自适应网站建设外贸建站服务推广公司
  • java网站开发 项目规划百度总部投诉电话
  • 地图类网站开发实战教程新疆今日头条新闻
  • 设计师投稿网站收录情况
  • 哪里有网站可以做动态视频倒计时百度搜索风云榜官网
  • 工控机做网站服务器网络营销推广与策划
  • 郑州专业做网站多少钱seo软件推广哪个好
  • 郑州哪有做网站的汉狮百度网站怎么做
  • 太仓有没有做网站建设的媒体发稿网
  • 免费建设网站赚钱百度排名优化工具
  • 网站仿静态和静态的区别网站做外链平台有哪些
  • 手机端wordpress模板下载百度seo怎么把关键词优化上去
  • 新疆网站域名注册可靠的网站优化
  • 网站架构原理网站关键词排名查询
  • 完成职教集团网站建设做营销型网站哪家好
  • 安徽省建设厅到底哪个网站郴州网站seo外包
  • dedecms新闻网站模板世界新闻
  • 什么网站做的号成都网站seo费用
  • 织梦系统网站百度收录排名
  • 济南做外贸网站网站搜索优化找哪家
  • 旅游网站建设方案网站排名优化软件
  • 莆田 做外国 网站永久免费建个人网站