3068 - 数字之和为8

通过次数

0

提交次数

0

时间限制 : 1 秒 内存限制 : 128 MB

找出两位数中数字之和为8的数

题目输入

题目输出

输入/输出样例

输入格式

no input needed

输出格式

17
26
35
44
53
62
71
80

C++解答

#include<bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
	printf("17\n26\n35\n44\n53\n62\n71\n80");
	return 0;
}