Napisz program (w C++) ankiete proszący o podanie danych:imię, nazwisko, wiek, a następnie wypisujący te dane.
Z góry dziękuję :)
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include<iostream>
#include<conio.h>
#include<string.h>
using namespace std;
int main()
{
string imie;
string nazwisko;
int wiek;
cout<<"Wprowadz dane"<<endl;
cout<<"podaj nazwisko: ";
cin>>nazwisko;
cout<<"podaj imie: ";
cin>>imie;
cout<<"podaj wiek:";
cin>>wiek;
cout<<"\n\nWyświetlanie"<<endl;
cout<<"Nazwisko: "<<nazwisko;
cout<<"\nImie: "<<imie;
cout<<"\nWiek: "<<wiek;
getch();
return 0;
}