1. 程式人生 > >c++入門第一篇:hello,world!

c++入門第一篇:hello,world!

記錄每日學習程序,回顧複習便於查詢


c風格的實現

#include<stdio.h>




int main()
{
 printf("hello,world!\n");
 return 0;
}

c++風格的實現

#include<iostream>

using namespace std;

int main()
{
	cout<<"hello,world!"<<endl;
	return 0;
}