Odpowiedź :
Odpowiedź:
#include <iostream>
#include <fstream>
#include <string>
int main() {
//zad 1
std::ofstream file{"data.txt"};
std::string sentence;
std::cout << "Podaj zdanie, ktore chcesz zapisac do pliku\n";
//wpisz z klawiatury wiersz, ktory chcesz zapisac do pliku
std::getline(std::cin, sentence);
file << sentence << std::endl;
//zad 2
int n;
std::cout << "Podaj wielkosc choinki \n";
std::cin >> n;
for (int i = 0; i < n; i++) {
for (int j = n; j > i; j--) {
file << " ";
}
for (int j = 0; j <= i; j++) {
file << "* ";
}
file << std::endl;
}
//zad 3
int numbers[] = {1, 2, 3, 4, 5, 6};
for(const auto &num : numbers){
file << num << std::endl;
}
return 0;
}
Wyjaśnienie:
Te zadania mega niejasne, ale zrobiłem tak jak uważałem za najbardziej sensowne