code:вывод произведения

Этот коммит содержится в:
Bob (GoloshchapovDY)
2024-03-27 14:52:58 +03:00
родитель 921023e010
Коммит 21eb83ad16

Просмотреть файл

@@ -7,6 +7,6 @@ int main()
cout<<"Enter A and B: ";
int a,b;
cin>>a>>b;
cout<<"A+B= "<<a+b<<'\n'<<"A-B"<<a-b<<'\n';
cout<<"A+B= "<<a+b<<'\n'<<"A-B"<<a-b<<'\n'<<"A*B= "<<a*b<<'\n';
return 0;
}