프로그램 수정 좀 부탁드립니다ㅠㅠ
빛글
#include stdio.h
#define MAX 31
enum temps_trends{rising=0, steady, falling=0, above, below, highest, lowest};
void print_temps(float temps[], int num);
void temps_extrema(float temps[], int num, float *max, float *min);
float temps_ave(float temps[], int num);
float temp(float temps[],int num);
float temps[MAX], ave=0, max, min;
int i, count, num=0;
void read_temps()
{
printf(매일의 기온의 입력하세요 : );
while(scanf(%f, &temps[num])==1)
{
num++;
if(numMAX)
{
printf(초과하였습니다.);
}
}
}
float temp(float temps[],int num)// 전날과 온도 비교 출력
{
if(i==0)
printf(\t);
else
{
if(temps[i]temps[i-1])
return temps_trends == 0;
else if(temps[i]temps[i-1])
return rising;
else
printf(\t\t);
}
}
void temp_mn(float temps[], int num)
{
if(temps[i] ave)
printf(above ave.\t);
else if(temps[i] ave)
printf(below ave.\t);
else
printf(\t);
printf(\n);
}
void temp_temps(float temps[], int num)
{
if(temps[i]==max)
printf(highest\n);
else if(temps[i]==min)
printf(lowest\n);
else
printf(\n);
}
float temps_ave(float temps[], int num)
{
float total=0;
int count;
for(count=0; countnum; count++)
{
total = total + temps[count];
}
ave = total/num;
return ave;
}
void temps_extrema(float temps[], int num, float *max, float *min)
{
*max = temps[0];
*min = temps[0];
for(i=1; inum-1; i++)
{
if(temps[i] *max)
*max = temps[i];
if(temps[i] *min)
*min = temps[i];
}
}
void print_temps(float temps[],int num)
{
for(i=0; inum; i++)
{
printf(%.1f\t, temps[i]);
temp(temps, i);
temp_mn(temps, i);
temp_temps(temps, i);
}
}
void main()
{
read_temps();
ave=temps_ave(temps, num);
temps_extrema(temps, num, &max, &min);
print_temps(temps, num);
}
--------------------------------------------------------
입력: 27.5 26.5 28.0 29.0 25.0 30.0 32.5 29.5^D
(^D는 Ctrl 키와 D키를 동시에 누르는 것을 의미하며, 파일의 끝(EOF)을 나타낸다.)
출력:
27.5 below ave.
26.5 falling below ave.
28.0rising below ave.
29.0rising above ave.
25.0 fallingbelow ave. lowest
30.0 rising above ave.
32.5 rising above ave. highest29.5falling above ave.
-------------------------------------------------
저렇게 출력이 되야되는데 이상하게 출력이 되요 ㅠ
어디가 잘못된건가요???
쓸건다쓴거 같은데 틀린곳을 모르겠어요 ㅠ
어디를 고쳐야지 출력문이 위에처럼 나오는지좀 알려주세요 부탁드릴께요 ㅠ ㅠ
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |