Napisz 2 programy typu void w c++ :
1) powtórzy moje imię tyle razy ile chcę
np. -program zapyta: ile rary mam powtórzyć imię ??
-wpisuję : 5
- program : Kuba Kuba Kuba Kuba Kuba
2)podam dowolną liczbę a program pomnoży mi ją razy 2(tylko liczby naturalne)
np.-Program: Podaj liczbę ??
-Wpisuję: 6
-Program : 6*2=12
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
1)
http://ideone.com/ycD60e
#include <iostream>
int main()
{
using std::cin;
using std::cout;
cout << "Ile razy mam powtorzyc imie? ";
unsigned int count;
cin >> count;
while (count--)
cout << "Kuba ";
}
2)
http://ideone.com/813CWY
#include <iostream>
int main()
{
using std::cin;
using std::cout;
unsigned int num;
cin >> num;
cout << 2*num;
}
Program 1;
#include <iostream>
#include <conio.h>
using namespace std;
int main(){
int ile;
cout << "Ile razy chcesz wyswietlic imie?"<<endl;
cin >> ile;
for (int a=1; a<=ile;a++){
cout << "Kuba"<<endl;
}
getch();
return 0;
}
Program 2;
#include <iostream>
#include <conio.h>
using namespace std;
int main(){
int liczba;
cout << "Podaj liczbe"<<endl;
cin >> liczba;
cout << liczba<< " * " << "2"<< " = " <<liczba*2<<endl;
getch();
return 0;
}
Pozdrawiam Marcin.