Dreamin0910

博客园 首页 新随笔 联系 订阅 管理

此题目来源于LZOI

题目传送门

#include <iostream>
using namespace std;

int main() {
    int n;
    cin >> n;

    int ones = n % 10;
    int tens = (n / 10) % 10;
    int hundreds = n / 100;

    int sum = ones + tens + hundreds;

    cout << sum << endl;

    return 0;
}

 

posted on 2023-08-12 19:22  丘啵啵  阅读(55)  评论(0编辑  收藏  举报