TGTGInsighttelegram intelligenceLIVE / telegram public index
← Computer Programming
Computer Programming avatar

TGINSIGHT POST

Post #119

@cpp_sirius

Computer Programming

Visninger166Antall visninger
Publisert2. okt.02.10.2025, 17:20
Innhold

Innholdet i innlegget

// Uchta son. max? //a b c int a, b, c, max; cin >> a >> b >> c; if (a>b and a>c) { max = a; }else if (b>a and b>c) { max = b; }else { max = c; } cout << max << endl;