c++ 基本语法

c忘了,学一下c++

基础

代码:

#include//输入输出流库
using namespace std;//类似Java不同包的作用防止函数变量产生冲突

/*main 是一个程序的入口
       每个程序都必须有这么一个函数
	   有且仅有一个*/
int main() {
	cout << "dfsdf ";//标准输出 endl换行
	cout << "dfsdf" << endl;//标准输出 endl换行
	system("pause");//暂停窗口(控制台)
	return 0;
}

代码:

#include

using namespace std;

#define day 7;//宏常量即day就是常量7

int main() {
	const int a = 12;//a被修饰为常量不能被更改

	cout << "a为常量 " << a << "不能被修改";
	system("pause");
	return 0;
}

sizeof函数

检查数据范围
代码;

#include

using namespace std;

#define day 7;//宏常量即day就是常量7

int an[100];

int main() {
	const int a = 12;//a被修饰为常量不能被更改

	cout << sizeof(a)<< " " << sizeof(an);
	system("pause");
	return 0;
}

字符串

#include
using namespace std;

int main() {

	//c语言风格string
	char a[] = "hello";//双引号

	string an = "niub";

	cout << a << endl;

	cout << an<<endl;

	system("pause");
	return 0;
}

输入

#include
using namespace std;

int main() {
	int a;
	cin >> a;//输入
	cout << a << endl;

	system("pause");
	return 0;
}

函数定义及调用

#include
using namespace std;


void dfs(int n) {
	return;
}

int ffs(int i) {
	return i;
}

int main() {
	int a;
	cin >> a;//输入
	cout << a << endl;
	dfs(11);
   
	cout << ffs(11) << endl;

	system("pause");
	return 0;
} 

c++函数得写在main函数的前面否则没办法找到

你可能感兴趣的:(c++,java,算法)