Jump to content

[C++] Afisare text


SkiizO
 Share

Recommended Posts

Prin urmatoarea metoda poti afisa orice lucru in C++:

#include <iostream>

using namespace std;

int main()
{
	int x = 5;
	cout << "Primul meu numar afisat in C++ este: " << x;
	
	return 0;
}
 
Edited by shanker'
Actualizare program
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.