Fading Coder

One Final Commit for the Last Sprint

Solving AtCoder Beginner Contest 058 Problems

A — Checking a Beautiful Arrangement Three pillars stand equally spaced in a line. Their heights are (a), (b), (c) from left to right. The arrangement is beautiful if (b - a = c - b). Determine whether it qualifies. #include <iostream> int main() { int h1, h2, h3; std::cin >> h1 >>...