Skip to content
Snippets Groups Projects
Commit 8630a940 authored by Vojtěch Novotný's avatar Vojtěch Novotný
Browse files

testing

parent 41f58474
No related branches found
No related tags found
1 merge request!1Cviceni
File added
File added
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a;
cout << "Napis jedno cislo typu int\n";
if (std::cin.good())
cout << "a = " << a << "\n";
else
cout << "nauc se psat dat typy!!!!!!\n";
cout << "Napis dve cisla typu int\n";
cin >> a >> b;
cout << "a = " << a << "\n"
<< "b = " << b << "\n";
return 0;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment