Files
learncpp/ch_1/iostream/main.cpp

17 lines
301 B
C++
Raw Normal View History

2026-04-04 22:33:20 -05:00
#include <iostream>
int main() {
std::cout << "Hello, world!\n";
double pi { 3.1415 };
std::cout << "pi is approximately " << pi << std::endl;
std::cout << "Enter a character: ";
char c { };
std::cin >> c;
std::cout << "You entered " << c << "\n";
return 0;
}