목록으로 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
섬네일
profile 너에게제공 | 12. 21 | 조회
16
XML
profile 너에게제공 | 12. 14 | 조회
15
XML s
XML
asf | 12. 14 | 조회
14
XML XML
profile 너에게제공 | 12. 07 | 조회
13
XML | 12. 07 | 조회
12
XML
s | 11. 30 | 조회
11
XML asd
XML
124 | 11. 23 | 조회
9
XML 124
XML
dqw | 11. 23 | 조회
8
XML 124
profile 너에게제공 | 11. 23 | 조회
7
profile 너에게제공 | 11. 23 | 조회
6
profile 너에게제공 | 11. 09 | 조회
4
XML
sdaf | 10. 26 | 조회
3
XML asdf