zadanie

Anonymous
c_cpp
10/10/2023 5:15 PM
264 B
13
Indexable
#include <iostream>

using namespace std;

int main()
{
    int liczba;
    cout << "Podaj dowolna liczbe " <<endl;
    cin>> liczba;
    cout << "Twoja liczba to "<< liczba << endl;
    return 0;
}
Editor is loading...