变量类型、关键字
变量类型:short int long double float char bool
输出
cout<<""<<endl;
#include <iostream>
#include <string>
using namespace std;
int main()
{
char str1[] = "Hello";
string str2 = "World";//string 创建字符串需要引用头文件 string
std::cout << "str1 = " << str1 << endl;
std::cout << "str2 = " << str2 << endl;
system("pause");
return 0;
}
输入
cin>>a;
#include <iostream>
#include <string>
using namespace std;
int main()
{
char str1[10] ;
string str2 ;//string 创建字符串需要引用头文件 string
std::cin >> str1;
std::cin >> str2;
std::cout << "str1 = " << str1 << endl;
std::cout << "str2 = " << str2 << endl;
system("pause");
return 0;
}
运算符
算数运算符:+ - * / %
关系运算符:! || &&
条件运算符:== != < > <= >=
逻辑运算符:| & ^
其他运算符:++i i++ --i i-- sizeof ........
顺序结构、选择结构、循环结构
代过
标签:std,string,--,基础,C++,运算符,int,include,cout From: https://blog.51cto.com/u_16071993/6456024