题库 信息学奥赛题库 题目列表 阅读程序写结果:#include <iostream> usi...
填空题

阅读程序写结果:

#include <iostream>
using namespace std;
struct point {
	int x;
	int y;
};
int main() {
	int a, b, c;
	struct EX {
		int a;
		int b;
		point c;
	} e;
	e.a = 1;
	e.b = 2;
	e.c.x= e.a + e.b;
	e.c.y= e.a * e.b;
	cout << e.c.x << ',' << e.c.y << endl;
	return(0);
}

输出:___________

题目信息
阅读程序 2015年 初赛
-
正确率
0
评论
23
点击
QQ
微信