1.创建 hello.cpp
2.输入
----------------------------
#include <stdio.h>
int main()
{
int a;
char c;
printf("hello word!");
scanf("%s",&c);
printf("输入了:%s",&c);
scanf("%d", &a);
return 0;
}
----------------------------
3.开始-Visual Studio Tools-VS2019 开发人员命令提示
4.cd hello.cpp在的文件夹
5.cl hello.cpp
6.运行效果
原文地址:https://www.cnblogs.com/qq2806933146xiaobai/p/12188301.html
时间: 2024-10-13 00:19:44