Etudes/BTS/C++/fluxSortant.cpp

19 lines
282 B
C++
Raw Normal View History

2016-10-14 15:52:18 +00:00
#include <iostream>
using namespace std;
int main()
{
cout << "Bonsoir" << endl;
int unEntier = 10;
cout << unEntier << endl;
char uneLettre = 'a';
cout << uneLettre << endl;
string phrase = "test de phrase";
cout << phrase << endl;
return 0;
}