How to write a code to arrange integers in acending in cpp | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

How to write a code to arrange integers in acending in cpp

12th Nov 2018, 12:20 PM
Fan Of Mr Beast
Fan Of Mr Beast - avatar
2 ответов
+ 1
#include <iostream> using namespace std; int main() {int ab[]={4,2,8,4,5}; for(int x=0; x<5; x++) { ab[x] ; cout << ab[x];} return 0; } roneel see this attemp
12th Nov 2018, 12:39 PM
Fan Of Mr Beast
Fan Of Mr Beast - avatar
- 1
Isn't tough.😁 What do you have done so far? Show your attempts.
12th Nov 2018, 12:25 PM
Roneel
Roneel - avatar