当前位置:网站首页>Installation steps and environment configuration of vs Code
Installation steps and environment configuration of vs Code
2022-07-29 05:36:00 【Believe in youth】
Catalog
3、 ... and 、 Software download and installation
1. Enter the installation interface
2. Enter environment configuration test edit
1. Determine the purpose ( front end /C Language /C++)
2.2 C The language code , For environmental testing
5、 ... and 、 Environment variable configuration
Best wishes : Happy use !
One 、Vs code Introduce
Visual Studio Code( abbreviation “VS Code”
[1] ) yes Microsoft stay 2015 year 4 month 30 Japan Build The developer conference officially announced a program running on Mac OS X、Windows and Linux Above , For writing modern Web And cross platform source code editor for Cloud Applications .
[2] Can run on the desktop , And can be used for Windows,macOS and Linux.
It is right. JavaScript,TypeScript and Node.js Built in support for , And rich in other languages ( for example C++,C#,Java,Python,PHP,Go) Runtime ( for example .NET and Unity) An extended ecosystem .
Two 、 Download url :
- Download url :Visual Studio Code - Code Editing. Redefined
VSCodeUserSetup-x64-1.67.2.exe
Extraction code : xg61
Click the link to save , Or copy this paragraph , open 「 Alicloud disk 」APP , No need to download speed online view , The original video is played at double speed .
3、 ... and 、 Software download and installation
( Click on download)
( Choose the appropriate version according to the computer version )
( Waiting for download )
1. Enter the installation interface
( Agree to the agreement )
( Set the path )
( Set the path )
( Check )
2. Enter environment configuration test
( installation is complete )
Four . Plug in installation
1. Determine the purpose ( front end /C Language /C++)
( Plug in installation )
( Installing a plug-in )
( test run , front end )
2. Code runs
( Programming )
2.1 HTML Refer to test code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vs code Installation and use of </title>
</head>
<body>
<h2> This is the installation test page </h2>
<p> This is a test page , It's my first web page , page </p>
</body>
</html>
( Instructions for installing plug-ins )
2.2 C The language code , For environmental testing
#include<stdio.h>
void main()
{
int n[10] = { 25,35,68,79,21,13,98,7,16,62 };// Define a size as 10 Array of
int i, j,k,temp;
for (i = 1; i <= 9; i++)// The outer cycle is the number of rounds compared , There are... In the array 10 Number , Then it should be more 10-1=9 round
{
for (j = 0; j <= 9 - i; j++)// The inner loop compares the number of comparisons in the current round , for example : The first round of comparison 9-1=8 Time , The second round of comparison 9-2=7 Time
{
if (n[j] > n[j + 1])// If two adjacent numbers are in reverse order , Then switch places
{
temp = n[j];
n[j] = n[j + 1];
n[j + 1] = temp;
}
}
printf(" The first %d The data sorting after the sorting is completed :\n",i);
for (k = 0;k < 10; k++)
printf("%-4d", n[i]);
printf("\n");
}
printf(" The order of numbers after sorting :\n");
for (i = 0; i < 10; i++)
printf("%-4d", n[i]);
printf("\n");
}

( test result )
( I installed. C Language running plug-ins , Optional installation )
5、 ... and 、 Environment variable configuration
( Configuration complete )
(gcc-v test )
边栏推荐
猜你喜欢

Three handshakes and four waves for the interview summary

Clickhouse learning (IV) SQL operation

Global components component registration
![[C language series] - a recursive topic](/img/a2/9d65728e672ab16c4fc0d427c241c4.png)
[C language series] - a recursive topic

Clickhouse learning (XI) clickhouseapi operation

Day 1

ClickHouse学习(十)监控运行指标

HCIA-R&S自用笔记(26)PPP

牛客网编程题—【WY22 Fibonacci数列】和【替换空格】详解

公众号不支持markdown格式文件编写怎么办?
随机推荐
C language n queen problem
Pointer
Talking about Servlet
Occt learning 001 - Introduction
href与src的区别
Thrift安装手册
ClickHouse学习(八)物化视图
全局components组件注册
Allocate memory: malloc() and free()
C language one-dimensional array
Dynamic sorting of DOM object element blocks in applets
重绘与回流的关系
Summary of the first week
uniapp组件之倒计时(如阅读协议倒计时、完成学习倒计时)
Together with digital people, digital space and XR platform, Alibaba cloud and its partners jointly build a "new vision"
Side effects and sequence points
Bubble sort c language
小程序中的DOM对象元素块动态排序
【C语言系列】— 打印100~200之间的素数
【C语言系列】— 字符串+部分转义字符详解+注释小技巧