목록으로 2012.11.22. 11:05
C언어

BMI

youtube

#include <iostream>
#include <string>
#include <fstream>
using namespace std;

const int MAX=3;

class Student
{
        string name;
        int score[3];
        int sum;
        int avg;
public:
        string getName() { return name; }
        int getScore(int i) { return score[i]; }
        int getSum() { return sum; }
        int getAvg() { return avg; }
        void setName(string n) { name =n; }
        void setScore(int i, int s) { score[i] = s; }
        void calcSum() { sum = (score[0] -100)*0.9 ; } //(키-100)*0.9 표준체중
        void calcAvg() { avg = score[1]/sum*100; } //현재 체중/표준체중*100 비만도
};

int main()
{       
        Student std[MAX];
        ifstream input;       
        ofstream output;       
        int i;

        string name;
        int score1, score2;

        input.open("c:\student.txt");
        output.open("c:\student1.txt");

        if (input.fail() || output.fail())
                return 0;

        i = 0;
        while (!input.eof())
        {
            input >> name >> score1 >> score2;

            std[i].setName(name);
            std[i].setScore(0, score1);    std[i].setScore(1, score2);
           

            std[i].calcSum();    //표준체중
            std[i].calcAvg();

            output << std[i].getName() << 't' << std[i].getScore(0) << 't'
                << std[i].getScore(1)
                << 't' << std[i].getSum() << 't' << std[i].getAvg() <<  endl;

         i++;
            }

               input.close();
               output.close();
}

댓글 0

댓글 작성 권한이 없습니다. 로그인하기

NO
TITLE
섬네일
JSP
1 | 10. 18 | 조회
118
JSP 1
| 11. 27 | 조회
116
XML
dqw | 11. 23 | 조회
114
XML 124
XML
124 | 11. 23 | 조회
113
XML 124
C언어
profile 너에게제공 | 03. 28 | 조회
112
C언어 3-28
6 | 10. 11 | 조회
110
8 | 10. 11 | 조회
109
JSP
9 | 10. 18 | 조회
108
JSP 9
C언어
profile 너에게제공 | 11. 29 | 조회
107
C언어 A
profile 너에게제공 | 10. 04 | 조회
106
C언어
asf | 11. 23 | 조회
105
C언어 af
profile 너에게제공 | 04. 10 | 조회
104