목록으로 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
섬네일
E비즈니스
profile 너에게제공 | 11. 05 | 조회
88
E비즈니스 맞춤형안경
s | 11. 08 | 조회
87
C언어
df | 11. 08 | 조회
86
C언어 df
C언어
profile 너에게제공 | 11. 08 | 조회
85
C언어 ㅇ_ㅇ
profile 너에게제공 | 11. 09 | 조회
84
profile 너에게제공 | 11. 09 | 조회
83
E비즈니스
| 11. 11 | 조회
81
E비즈니스 위생정리
E비즈니스
| 11. 15 | 조회
79
E비즈니스 블랙리스트
profile 너에게제공 | 11. 15 | 조회
78
C언어
profile 너에게제공 | 11. 15 | 조회
77
C언어 c++ 11/15
C언어
s | 11. 15 | 조회
76
C언어 s
JSP
전장호 | 11. 21 | 조회
75
JSP f
C언어
profile 너에게제공 | 11. 22 | 조회 515
74
C언어 BMI