Ask your own question, for FREE!
Computer Science 10 Online
OpenStudy (anonymous):

Write a c++ program using an array that accepts 5 nos. and then display the highest. Sample run: Enter 5 nos.: 5 3 6 5 4 Highest: 6

OpenStudy (anonymous):

#include<iostream> using namespace std; int main() { const int total_inputs=5; int req_no,input_no; cout<<"Enter "<<total_inputs<<" nos :... "; cin>>req_no; for(int i=0;i<total_inputs-1;i++) { cin>>input_no; if(req_no<input_no) req_no=input_no; } cout<<"\nHighest : "<<req_no<<endl; return 0; }

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!