Odpowiedź:
#include<iostream>
using namespace std;
int main()
{
int zmienna_liczbowa;
string imie;
cout << "Hello World" << endl;
cout << 3*4 << endl;
cout << "What is your name?:";
cin >> imie;
cout << "Hello " << imie;
return 0;
}
Wyjaśnienie:
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include<iostream>
using namespace std;
int main()
{
int zmienna_liczbowa;
string imie;
cout << "Hello World" << endl;
cout << 3*4 << endl;
cout << "What is your name?:";
cin >> imie;
cout << "Hello " << imie;
return 0;
}
Wyjaśnienie: