Aplikacja nr 2

#include <iostream>

using namespace std;

int a,b;

int main()
{ setlocale(LC_ALL,””);
cout << „Program sumuj¹cy liczby a i b” << endl;
cout << „—————————–” << endl;
cout << „podaj liczbê a: „;
cin >> a;
cout << „Podaj liczbê b: „;
cin >> b;
cout << „Wynik dodawania a+b to: „;
cout << a+b;
return 0;
}

Dodaj komentarz

Twój adres e-mail nie zostanie opublikowany. Pola, których wypełnienie jest wymagane, są oznaczone symbolem *