游客 Signup | Login
中文 | En

2639 - 输出成绩

已知一位同学的学号、语文和数学成绩、等级,请把它们放入对应变量中,并在屏幕上输出;
同学学号为15号,语文成绩97,数学成绩98,最终等级’A’
输出格式:每行一项内容

Input

Output

15
97
98
A

Examples

Input

no input needed

Output

15
97
98
A

Solution C++

#include<bits/stdc++.h>
using namespace std;
int main()
{
	cout<<"15"<<endl;
	cout<<"97"<<endl;
	cout<<"98"<<endl;
	cout<<"A"<<endl;
	return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题