10_1.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //10_1
  2. #include <iostream.h>
  3. struct Student{
  4.   int mathmidterm;
  5.   int mathfinal;
  6. };
  7. void main()
  8. {
  9.   Student s;
  10.   cout <<"please input midterm and final mathn"
  11.        <<"grade of a student:n";
  12.   cin >>s.mathmidterm >>s.mathfinal;
  13.   cout <<"the average grade of midterm and final math is "
  14.        <<(s.mathmidterm + s.mathfinal)/2.0 <<endl;
  15. }