#include <cmath>
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL,"RUS");
unsigned long a,b;
cout<<"Введите число а"<<endl;
cin>>a;
cout<<"Введите число b"<<endl;
cin>>b;
cout<<((unsigned long)pow(a,b))%10;
system("pause");
return 0;
}
using System;
class Power {
static int Main() {
ulong a, b;
Console.WriteLine("Введите число а");
a=Convert.ToUInt64(Console.ReadLine());
Console.WriteLine("Введите число b");
b=Convert.ToUInt64(Console.ReadLine());
Console.WriteLine(Math.Pow(a,b)%10);
Console.ReadKey();
program Power;
uses crt;
var
a,b,c:Int64;
i:byte;
begin
writeln ('Введите число a');
readln(a);
writeln ('Введите число b');
readln(b);
c:=1;
for i:=1 to b do
c:=c*a;
writeln (c mod 10);
end.
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL,"RUS");
unsigned long a,b;
cout<<"Введите число а"<<endl;
cin>>a;
cout<<"Введите число b"<<endl;
cin>>b;
cout<<((unsigned long)pow(a,b))%10;
system("pause");
return 0;
}
C#using System;
class Power {
static int Main() {
ulong a, b;
Console.WriteLine("Введите число а");
a=Convert.ToUInt64(Console.ReadLine());
Console.WriteLine("Введите число b");
b=Convert.ToUInt64(Console.ReadLine());
Console.WriteLine(Math.Pow(a,b)%10);
Console.ReadKey();
return 0;
}
}
Pascalprogram Power;
uses crt;
var
a,b,c:Int64;
i:byte;
begin
writeln ('Введите число a');
readln(a);
writeln ('Введите число b');
readln(b);
c:=1;
for i:=1 to b do
c:=c*a;
writeln (c mod 10);
end.