Closed artem05kz closed 1 year ago
using namespace std;
void File() { cout << "Введите числа" << endl; ofstream F("file.txt"); int numbers[10];
for (int i = 0; i < 10; ++i)
cin >> numbers[i];
if (F)
{
for (int i = 0; i < 10; i++)
{
F << numbers[i] << " ";
}
}
else
cout << "Файл не существует" << endl;
F.close();
ifstream Fq;
Fq.open("file.txt");
int sum = 0;
int q = 0;
for (int i = 0; i < 10; i++)
{
if (!Fq.eof())
{
Fq >> q;
sum += q;
}
else
{
cout << "Файл не существует" << endl;
break;
}
}
Fq.close();
cout << endl << "Введите число" << endl;
cout << sum;
}
int SignX(int x) { if (x > 0) return 1; else if (x == 0) return 0; else if (x < -1) return -1; else return 0; }
int Pramygol(int x) { int a, b; cout << "Введите длину и ширину прямоугольника" << endl; cin >> a >> b; return x=a*b; }
int Treyg(int x) { int a, b; cout << "Введите основание и высоту треугольника" << endl; cin >> a >> b; return x = 0.5 a b; }
int Kryg(int x) { int a; cout << "Введите радиус круга" << endl; cin >> a; return x = aa 3.14; }
void Flag() { for (int i = 1; i <= 13; i++) { for (int j = 0; j < 60; j++) { if (i < 5 && j < 13) { cout << "*"; } else cout << "_"; } cout << endl; } }
void Sin() { HWND hWnd = GetConsoleWindow();
}
int main() { setlocale(LC_ALL, "Rus"); int x = 0; /*File(); cout << "Введите число" << endl; cin >> x; cout << "Знак числа \t"<< SignX(x) << endl;
cout << "Площадь прямоугольника \t" << Pramygol(x) << endl;
cout << "Площадь треугольника \t" << Treyg(x) << endl;
cout << "Площадь круга \t" << Kryg(x) << endl;
Flag();*/
}
Домашняя работа № 4.txt