一、C++概述

一、

(1)

cout <<输出

<<endl 换行

return 0 结束

//注释

(2)

 

 只能输入一个单词,不能输成 类似 "Li lie",这样的名字

cin.getline(),按行读取输入的值

(3)

 (4)C++程序的基本要素

(4)dev c++兼容c

二、数据类型

1、

#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
	cout<<1234<<" "<<12<<" "<<124<<endl;
	cout<<1<<" "<<124<<" "<<124<<endl;
	cout<<'\n';//换行 
	cout<<1234<<"\t"<<12<<"\t"<<124<<endl;
	cout<<1<<"\t"<<124<<"\t"<<124<<endl;
	return 0;
}

(5)常量和变量

 

 

 

 

 

  

 

posted on 2018-03-14 17:24  箬笠蓑衣  阅读(249)  评论(0编辑  收藏  举报