Share #56 [Bài Tập C (Hàm, Lý thuyết số )]. Tính a^b%10

lytruchoangxuan

New member
** 56.[Bài tập C (chức năng, số lý thuyết)].Tính toán a^b%10 `` `
#include <stdio.h>

int main () {
int a, b;
Scanf (" %d %d", & a, & b);
int ans = 1;
for (int i = 0; i <b; i ++) {
ans = ans * a % 10;
}
printf (" %d", ANS);
trả lại 0;
}
`` `

** Hashtags: **

* #Lập trình C
* #Bài toán
* #Recursion
* #exponentiation
* #hoạt động Modulo
=======================================
**56. [Exercise C (function, theory number)]. Calculate a^b%10 ```
#include <stdio.h>

int main() {
int a, b;
scanf(" %d %d ", &a, &b);
int ans = 1;
for (int i = 0; i < b; i++) {
ans = ans * a % 10;
}
printf(" %d ", ans);
return 0;
}
```

**Hashtags:**

* #c-programming
* #Math-problems
* #Recursion
* #exponentiation
* #Modulo-operation
 
Join ToolsKiemTrieuDoGroup
Back
Top
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock