Well im trying to learn on my own. But i got 1 tiny problem. I think it's becuse im using the forgotten rev that causing it. But when i trie to make something, when i push enter it just disapear. here is code
Code:
//ett första exempel
#include <iostream>
using namespace std ;
int main()
{
int tal1, tal2, tal3;
cout << "mata in 3 tal:";
cin >> tal1 >> tal2 >> tal3;
int summa = tal1 + tal2 + tal3;
cout << "summan av talen blir" << summa;
cin.get();
return 0;
}