第二个C++程序:Welcome With ThreeMessages
#include<iostream>
using namespace std;
int main()
{
cout<< "Programming is fun!" <<endl;
cout<< "Fundmentals First" <<endl;
cout << "Problem Driven" << endl;
return 0;
}
#include<iostream>
using namespace std;
int main()
{
cout<< "Programming is fun!" <<endl;
cout<< "Fundmentals First" <<endl;
cout << "Problem Driven" << endl;
return 0;
}
相关推荐