Cho một số n có hai chữ số tính tổng các chữ số của số đó đó VD : n=28 tổng bằng 2+8 = 10 n = 10 tổng bằng 1+0=1 Ai giỏi tin chỉ giùm mik với ạ

2 câu trả lời

Program NN;
Uses crt;
Var n,s: qword;
Begin
        Clrscr;
        Write('Nhap n: '); Readln(n);
        s:=0;
        While n<>0 do
        Begin
                s:=s+n mod 10;
                n:=n div 10;
        End;
        Write('S = ',s);
        Readln
End.

#include <iostream>

using namespace std;

int main()

{

int s, n, k;

cin >>n;

while (n != 0)

{

    k = n % 10;

    n = n / 10;

    s = s + k;

}

cout <<s;

return 0;

}

Câu hỏi trong lớp Xem thêm