#include <iostream>
#include <string>
using namespace std;
int main()
{
setlocale(LC_ALL, ".1251");
system("color 1F");
cout << "\n\n\tПрограма знайомства.\n";
string ms;
cout << "\n\tДоброго дня. Введiть Ваше iм'я: ";
cin >> ms;
cout << "\n\tРадий Вас, ";
setlocale(LC_ALL, ".866");
cout << ms;
setlocale(LC_ALL, ".1251");
cout << ", привiтати. Дуже приємно. Мне звуть ПК.";
cout << "\n\n\t";
system("pause");
return 0;
}
#include <iostream>
#include <string>
using namespace std;
int main()
{
setlocale(LC_ALL, ".1251");
system("color 1F");
cout << "\n\n\tПрограма обчислення середнього значення.\n";
int n;
cout << "\n\tВведiть кiлькiсть чисел N= ";
cin >> n;
float sum = 0;
for (int i = 0; i < n; i++)
{
float buf = 0;
cout << "\n\t Введiть " << i + 1 << "-е число: ";
cin >> buf;
sum += buf;
}
sum /= n;
printf("\n\n\tСереднє значення: %8.1f", sum);
cout << "\n\n\t";
system("pause");
return 0;
}
{
CDialog::OnInitDialog();
// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here
rad1.SetCheck(true);
rad2.SetCheck(false);
return TRUE; // return TRUE unless you set the focus to a control
}
----------------------
else
{
HPEN np, bp;
HBRUSH nb, bb;
CClientDC dc(this);
CRect rc, w, fg;
GetClientRect(&rc);
w.left = rc.left + 100;
w.right = rc.right - 120;
w.top = rc.top + 120;
w.bottom = rc.bottom - 80;
dc.FillSolidRect(&w, RGB(255, 255, 255));
fg.left = w.left + 70;
fg.right = w.right - 60;
fg.top = w.top + 25;
fg.bottom = w.bottom - 25;
np = CreatePen(PS_SOLID, 8, 0x008B0000);
bp = (HPEN)SelectObject(dc, np);
nb = CreateSolidBrush(0x0000DDFF);
bb = (HBRUSH)dc.SelectObject(nb);
dc.Ellipse(fg);
SelectObject(dc, bp);
DeleteObject(np);
DeleteObject(nb);
SelectObject(dc, bb);
CDialog::OnPaint();
}
--------------------------
void CMFCApplication1Dlg::OnBnClickedRadio1()
{
// TODO: Add your control notification handler code here
HPEN np, bp;
HBRUSH nb, bb;
CClientDC dc(this);
CRect rc, w, fg;
GetClientRect(&rc);
w.left = rc.left + 100;
w.right = rc.right - 120;
w.top = rc.top + 120;
w.bottom = rc.bottom - 80;
dc.FillSolidRect(&w, RGB(255, 255, 255));
fg.left = w.left + 70;
fg.right = w.right - 60;
fg.top = w.top + 25;
fg.bottom = w.bottom - 25;
np = CreatePen(PS_SOLID, 8, 0x008B0000);
bp = (HPEN)SelectObject(dc, np);
nb = CreateSolidBrush(0x0000DDFF);
bb = (HBRUSH)dc.SelectObject(nb);
dc.Ellipse(fg);
SelectObject(dc, bp);
DeleteObject(np);
DeleteObject(nb);
SelectObject(dc, bb);
}
void CMFCApplication1Dlg::OnBnClickedRadio2()
{
// TODO: Add your control notification handler code here
HPEN np, bp;
HBRUSH nb, bb;
CClientDC dc(this);
CRect rc, w, fg;
GetClientRect(&rc);
w.left = rc.left + 100;
w.right = rc.right - 120;
w.top = rc.top + 120;
w.bottom = rc.bottom - 80;
dc.FillSolidRect(&w, RGB(255, 255, 255));
fg.left = w.left + 70;
fg.right = w.right - 60;
fg.top = w.top + 25;
fg.bottom = w.bottom - 25;
np = CreatePen(PS_SOLID, 8, 0x008B0000);
bp = (HPEN)SelectObject(dc, np);
nb = CreateSolidBrush(0x0000DDFF);
bb = (HBRUSH)dc.SelectObject(nb);
dc.Rectangle(fg);
SelectObject(dc, bp);
DeleteObject(np);
DeleteObject(nb);
SelectObject(dc, bb);
}
Якщо ви помітили помилку чи неточність, виділіть фрагмент тексту та натисніть Ctrl+Enter.