BUG

1.c版本的printf无法输出string类型的值:
string s = “TLE”;
printf("%s\n" , s);//输出乱码
正确输出方式:
printf("%s" , s.c_str());//string中c_str()成员方法返回当前字符串的首字符地址
cout<<s;//string中重载了“<<”操作符

2.vs中变量窗口

BUG
3.PPT中插入Visio绘制的图时,变成图片格式,可以先粘贴到word,然后在粘贴到ppt中。

相关文章:

  • 2021-07-01
  • 2022-01-31
猜你喜欢
  • 2021-07-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-30
  • 2021-12-15
相关资源
相似解决方案