July 5, 2020
Sum of digits
Threads: Write a program to 1 integer. Tính tổng các chữ số của nó
Input: A single integer
Output: Tổng các chữ số của nó
For example 1:input: 234 output: 9For example 2:
input: 309 output: 12
You are not logged in? Log in to Submit Now!
5 Comments
Add a Comment
You must be logged in to post a comment.
#include
int main()
{
int n;
scanf(“%d”, &n);
int s=0;
while (n!=0){
s=s+n%10;
n=n/10;
}
printf(“s= %d”, s);
return 0;
}
code em như này sao test nó ra Wrong answer nhỉ???
Bạn in thừa
ok bạn
#include
int main() {
long n;
scanf(“%ld”, &n);
long s=0;
while(n)
{
int x=n%10;
s=s+x;
n=n/10;
}
printf(“%ld\n”, s);
return 0;
}
Test kq đúng 2 current: int n = int.Parse(Console.ReadLine());
và Console.Write(” “); trong c# mà test 4 vẫn báo lỗi Runtime Error (NZEC)
Cái này mình nghĩ lỗi do hệ thống rồi.
Mình chuyển kiểu int -> long rồi mà vẫn báo lỗi :3