Untitled
unknown
plain_text
a year ago
154 B
11
Indexable
#include <iostream>
using namespace std;
int main()
{
    float a,b;
    cin>>a>>b;
    float avg=(a+b)/2;
    cout<<avg;
    return 0;
}
Editor is loading...
Leave a Comment
#include <iostream>
using namespace std;
int main()
{
    float a,b;
    cin>>a>>b;
    float avg=(a+b)/2;
    cout<<avg;
    return 0;
}