1.5. Вывести на одной строке числа 1, 13 и 49 с одним пробелом между ними.
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
setlocale(LC_ALL, "rus");
double a=1, b=13, c=49;
cout << a << " " << b << " " << c;
_getch();
}
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
setlocale(LC_ALL, "rus");
double a=1, b=13, c=49;
cout << a << " " << b << " " << c;
_getch();
}
Комментариев нет:
Отправить комментарий