• 목록
  • 아래로
  • 위로
  • 쓰기
  • 검색

C언어 BMI

너에게제공 너에게제공
442 0 0

#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

댓글 쓰기
권한이 없습니다. 로그인
에디터 모드

신고

"님의 댓글"

이 댓글을 신고하시겠습니까?

댓글 삭제

"님의 댓글"

이 댓글을 삭제하시겠습니까?

공유

퍼머링크