填空题

NOIP2015 阅读程序 

2.

#include <iostream>
using namespace std;
struct point {
	int x;
	int y;
};
int main() {
	struct EX {
		inta;
		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;
}

输出:

发表评论

登录 后再回复