mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 22:10:56 +00:00
[Add] solved solutions
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int t, n, i, fdigit, ldigit;
|
||||
cin >> t;
|
||||
for (i = 0; i < t; i++)
|
||||
{
|
||||
cin >> n;
|
||||
ldigit = n%10;
|
||||
while (n)
|
||||
{
|
||||
fdigit = n%10;
|
||||
n = n/10;
|
||||
}
|
||||
cout << fdigit + ldigit << endl;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user