astea, va org rpd sssssssssss
Răspunsuri la întrebare
Răspuns:
Pentru ex 1
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll n, a, b, c;
signed main()
{
cin >> n;
cout << a*a + b*b + c*c;
return 0;
}
Pentru ex 2
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll x;
signed main()
{
cin >> x;
if(x%5 == 0 || x%7 == 0)
cout << "DA";
else
cout << "NU";
return 0;
}
Pentru ex 3
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll x;
signed main()
{
cin >> x;
if(x/100 == 0 && x/10 > 0)
cout << "DA";
else
cout << "NU";
return 0;
}
Pt ex 4
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll x;
signed main()
{
cin >> x;
if(x/100 > x%10)
cout << "cifra sutelor e mai mare";
else if(x/100 < x%10)
cout << "cifra unitatilor e mai mare";
else
cout << "cifrele sunt egale";
return 0;
}
Explicație: