+ 1
How to write a code to arrange integers in acending in cpp
2 Respuestas
+ 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
- 1
Isn't tough.😁
What do you have done so far?
Show your attempts.