Odpowiedź:
//1
#include <iostream>
int main(int argc, char *argv[]) {
int a,b,c;
std::cout << "Podaj liczbe a: ";
std::cin >> a;
std::cout << "Podaj liczbe b: ";
std::cin >> b;
std::cout << "Podaj liczbe c: ";
std::cin >> c;
std::cout << "a*b*c = " << a*b*c << std::endl;
std::cout << "a-b-c = " << a-b-c << std::endl;
std::cout << std ::endl;
return 0;
}
//2
for (int i = 0; i < 15; i++) {
std::cout << "@";
//3
for (int i = 0; i < 5; i++) {
std::cout << "Lubię informatykę" << std::endl;
//4
for (int i = 10; i >= -10; i--) {
std::cout << i << std::endl;
//5
#include <vector>
int k;
float liczba;
for (int i = 0; i < k; i++) {
std::cout << "Podaj ilość liczb: ";
std::cin >> liczba;
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
//1
#include <iostream>
int main(int argc, char *argv[]) {
int a,b,c;
std::cout << "Podaj liczbe a: ";
std::cin >> a;
std::cout << "Podaj liczbe b: ";
std::cin >> b;
std::cout << "Podaj liczbe c: ";
std::cin >> c;
std::cout << "a*b*c = " << a*b*c << std::endl;
std::cout << "a-b-c = " << a-b-c << std::endl;
std::cout << std ::endl;
return 0;
}
//2
#include <iostream>
int main(int argc, char *argv[]) {
for (int i = 0; i < 15; i++) {
std::cout << "@";
}
return 0;
}
//3
#include <iostream>
int main(int argc, char *argv[]) {
for (int i = 0; i < 5; i++) {
std::cout << "Lubię informatykę" << std::endl;
}
return 0;
}
//4
#include <iostream>
int main(int argc, char *argv[]) {
for (int i = 10; i >= -10; i--) {
std::cout << i << std::endl;
}
return 0;
}
//5
#include <iostream>
#include <vector>
int main(int argc, char *argv[]) {
int k;
float liczba;
for (int i = 0; i < k; i++) {
std::cout << "Podaj ilość liczb: ";
std::cin >> liczba;
}
return 0;
}