某君新认识一网友。 当问及年龄时,他的网友说: “我的年龄是个2位数,我比儿子大27岁, 如果把我的年龄的两位数字交换位置,刚好就是我儿子的年龄”
请你计算:网友的年龄一共有多少种可能情况?
提示:30岁就是其中一种可能哦. 请填写表示可能情况的种数。
请你计算:网友的年龄一共有多少种可能情况?
提示:30岁就是其中一种可能哦. 请填写表示可能情况的种数。
注意:你提交的应该是一个整数,不要填写任何多余的内容或说明性文字。
答案是7
#include <cstdio>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int a,b;
int counts = 0;
for(int i = 10; i < 100 ;i ++)
{
a = i %10;
b = i/10;
if(a*10+b == i-27 )
{
counts++;
}
}
cout<<counts<<endl;
}