blob: c536018bec839732a931e74faed6de80120af4c3 (
plain) (
tree)
|
|
#include <iostream>
int main() {
int x = 41;
std::cout << "x = " << x << "\n";
x++;
std::cout << "x = " << x << "\n";
x--;
std::cout << "x = " << x << "\n";
++x;
std::cout << "x = " << x << "\n";
--x;
std::cout << "x = " << x << "\n";
}
|