Post #1762460
2026-04-28 23:26 UTC
good news! after a lot of effort, I was able to enroll in a C++ class at my local community college
bad news! I now have to learn C++ at my local community college. I’ve been reading an older version of the textbook so that I’ll be ahead of the class once it actually starts in June. I already hate nearly everything about this language
Replies (1)
-
@kasdeya@cryptid.cafe 2026-04-28 23:26
formatting and printing values in C++ seems nice and normal and not insane at all 🙃 #include #include using namespace std; int main() { cout << fixed << showpoint << setprecision(2) << setw(9) << 34.789 << endl; cout << fixed << showpoint << setprecision(3) << setw(5) << 7.0 << endl; cout << fixed << noshowpoint << 5.789e12 << endl; cout << left << setw(7) << 67 << endl; }