Computer Science, asked by 200601095, 12 hours ago

Write the C++ program to find the maximum of three numbers.

Answers

Answered by akshara514734
1

Answer:

C++ program to find greatest number between three numbers

#include<iostream>

using namespace std;

int main() {

int num1,num2,num3;

cout<<" Enter value for first number";

cin>>num1;

cout<<" Enter value for second number";

cin>>num2;

Similar questions