首页 > 其他分享 >the eighth——2022.12.29

the eighth——2022.12.29

时间:2022-12-29 20:57:07浏览次数:50  
标签:ctrl 代码 29 按住 printf eighth 2022.12

当printf需要打印双引号时,需要使用转义序列“\”

例如:


#include <stdio.h>

 

int main(void){

printf("\"Hello World!"\");

 

return 0;


 

输出:“Hello World!"

 

开始转换使用visual stdio.h2022

使用技巧:

1. 按住shift可以使接下来按住的小写字母大写

2. vs里面所有的悬浮窗都可以在视图中找到。

3. 当你的格式出现错误时,选中格式错误的代码(或者所有代码按住ctrl+a再松开,再按住ctrl+k+f,系统将会自动把你写的代码对齐。

4. 写错代码时CTRL+z可以撤回

 

标签:ctrl,代码,29,按住,printf,eighth,2022.12
From: https://www.cnblogs.com/ningzj/p/17013506.html

相关文章