Sa se scrie un algoritm care calculează produsul a trei numere și afișează rezultatul pe ecran
VA ROG AJUTAȚI-MĂ!!
E URGENT!!!
VA ROOOG!!
DAU CORONA!!!!
Răspunsuri la întrebare
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll const mod=1000000007;
ll const md=998244353;
ll mypowr(ll a,ll b) {ll res=1;a%=mod; assert(b>=0);
for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;}
ll mypow(ll a,ll b) {ll res=1;assert(b>=0);
for(;b;b>>=1){if(b&1)res=res*a;a=a*a;}return res;}
ifstream in("txt.in");
ofstream out("txt.out");
#define mp make_pair
#define pb push_back
#define pf push_front
#define fi first
#define se second
int main()
{
ios_base::sync_with_stdio(0);
cout<<fixed<<setprecision(15);
cin.tie(0);cout.tie(0);
ll a,b,c;
cin>>a>>b>>c;
cout<<a*b*c<<'\n';
return 0;
}
Pascal:
var
a,b,c,p:integer;
begin
read(a,b,c);
p:=a*b*c;
writeln('Rezultatul=',p);
end.
C++:
#include<iostream>
using namespace std;
int main()
{
long int a,b,c,p;
cout<<"Trei numere a,b,c:";
cin>>a>>b>>c;
p=a*b*c;
cout<<"Rezultatul:"<<p<<endl;
return 0;
}