C++ 一定会经历的常见错误
扫描二维码推送至手机访问。
版权声明:本文由我的FPGA发布,如需转载请注明出处。
本文链接:https://world.myfpga.cn/index.php/post/15.html
上一篇:C++ 中的变量类型创建和使用
下一篇:c++类的构造函数
#include <iostream> using namespace std; int main() { if(1+1==2) { cout << "1+1=2"; }...
#include<iostream> using namespace std; int sum(int a,int b);//函数声明 int main() { cout <<&nb...