cpp-demo-project/src/io.cpp

14 lines
226 B
C++
Raw Normal View History

2024-01-22 10:26:02 +01:00
#include "io.h"
#include <iostream>
2024-01-22 16:50:08 +01:00
int read_number()
2024-01-22 10:26:02 +01:00
{
std::cout << "Enter a number to add: ";
int x{};
std::cin >> x;
return x;
}
2024-01-22 16:50:08 +01:00
void write_answer(int x)
2024-01-22 10:26:02 +01:00
{
std::cout << "The answer is: " << x << "\n";
}