C++ 一定会经历的常见错误
C++ 一定会经历的常见错误
C++ 一定会经历的常见错误
C++中需要掌握的只有int(整型)float (浮点)char (字符),其他的可自行百度后学习,但是基本上用不到 int float char 这三种类型,换成说人话的解释就是: ...
#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...
#include<iostream> using namespace std; struct books{ char name[10]; int num; float price; }book; int&nb...