msvcr100d.dll 오류msvcr100d.dll 오류
Posted at 2013. 12. 11. 11:04 | Posted in 2학기/C언어'2학기 > C언어' 카테고리의 다른 글
키 평균내는 프로그램 (1) | 2013.12.02 |
---|---|
합격자 평균 구하는 프로그램 (0) | 2013.12.02 |
비밀번호 3번초과시 오류출력하는 프로그램 (1) | 2013.11.25 |
8장 17번 (0) | 2013.11.24 |
8장 16번 (0) | 2013.11.24 |
키 평균내는 프로그램키 평균내는 프로그램
Posted at 2013. 12. 2. 15:26 | Posted in 2학기/C언어#include <stdio.h>
#define N 5
int main()
{
int i, sum;
sum=0;
for (i=0;i<N; i++)
{
int height;
printf("%d번의 키는? ", i+1);
scanf("%d", &height);
sum += height;
}
printf("평균 키: %.1lf cm \n", (double)sum/N);
return 0;
}
'2학기 > C언어' 카테고리의 다른 글
msvcr100d.dll 오류 (0) | 2013.12.11 |
---|---|
합격자 평균 구하는 프로그램 (0) | 2013.12.02 |
비밀번호 3번초과시 오류출력하는 프로그램 (1) | 2013.11.25 |
8장 17번 (0) | 2013.11.24 |
8장 16번 (0) | 2013.11.24 |
합격자 평균 구하는 프로그램합격자 평균 구하는 프로그램
Posted at 2013. 12. 2. 15:19 | Posted in 2학기/C언어#include <stdio.h>
#define N 5
double computer_ave(int ary[N]);
int main()
{
int i;
int pass = 0, sum = 0;
int score[N] = {93, 82, 49, 55, 75};
printf("전체 평균: %.1lf \n", computer_ave(score));
for (i=0; i<N; i++)
{
if (score[i] >= 60)
{
sum += score[i];
pass++;
}
}
printf("합격자 평균 : %.1lf \n", (double)sum/pass);
return 0;
}
double computer_ave(int ary[N])
{
int i, sum = 0;
for (i=0; i<N; i++)
sum += ary[i];
return (double)sum / N;
}
'2학기 > C언어' 카테고리의 다른 글
msvcr100d.dll 오류 (0) | 2013.12.11 |
---|---|
키 평균내는 프로그램 (1) | 2013.12.02 |
비밀번호 3번초과시 오류출력하는 프로그램 (1) | 2013.11.25 |
8장 17번 (0) | 2013.11.24 |
8장 16번 (0) | 2013.11.24 |
비밀번호 3번초과시 오류출력하는 프로그램비밀번호 3번초과시 오류출력하는 프로그램
Posted at 2013. 11. 25. 17:09 | Posted in 2학기/C언어#include <stdio.h>
#include <stdlib.h>
#define SUCCESS 1
#define FAIL 2
#define LIMIT 3
int check(int id, int password);
int main(void)
{
int id, password, result;
while(1)
{
printf("id:____\b\b\b\b");
scanf("%d", &id);
printf("pass:____\b\b\b\b");
scanf("%d", &password);
result = check(id, password);
if(result==SUCCESS) break;
}
printf("로그인 성공\n");
return 0;
}
int check(int id, int password)
{
static int super_id = 1234;
static int super_password = 5678;
static int try_count = 0;
try_count++;
if(try_count >=LIMIT)
{
printf("횟수 초과\n");
exit(1);
}
if(id == super_id && super_password == password)
return SUCCESS;
else
return FAIL;
}
'2학기 > C언어' 카테고리의 다른 글
키 평균내는 프로그램 (1) | 2013.12.02 |
---|---|
합격자 평균 구하는 프로그램 (0) | 2013.12.02 |
8장 17번 (0) | 2013.11.24 |
8장 16번 (0) | 2013.11.24 |
8장 15번 (0) | 2013.11.24 |
#include <stdio.h>
int print_menu()
{
int choice;
printf("1.햄버거\n2.치즈버거\n3.샌드위치\n4.종료\n");
printf("원하는 메뉴를 선택하시오:");
scanf("%d", &choice);
return choice;
}
int check_menu_number(int result)
{
if(result>=1 && result<4)
call_menu(result);
else if(result == 4)
return 0;
else
{
print_menu();
if(result>=1 && result<4)
call_menu(result);
else if(result == 4)
return 0;
}
}
int call_menu(int choice)
{
printf("%d번 메뉴가 선택되었습니다.\n", choice);
}
int main(void)
{
int result;
result=print_menu();
check_menu_number(result);
return 0;
}
'2학기 > C언어' 카테고리의 다른 글
합격자 평균 구하는 프로그램 (0) | 2013.12.02 |
---|---|
비밀번호 3번초과시 오류출력하는 프로그램 (1) | 2013.11.25 |
8장 16번 (0) | 2013.11.24 |
8장 15번 (0) | 2013.11.24 |
8장 14번 (0) | 2013.11.24 |
//이해를 못하고있는 프로그램
#include <stdio.h>
#define e 0.000001
double f_equal(double a, double b)
{
int cal;
cal = a/b;
if(cal < e)
return 0;
else if (cal == e)
return 1;
}
double f_abs(double x)
{
if(x>=0)
return x;
else if(x<0)
{
x=-x;
return x;
}
}
double f_min(double x, double y)
{
if (x < y)
return x;
else if (x>y)
return y;
}
int main(void)
{
double c1, c2, result1, result2, result3, abs;
printf("실수를 입력하시오:");
scanf("%lf", &c1);
printf("실수를 입력하시오:");
scanf("%lf", &c2);
abs = c1-c2;
result1 = f_abs(abs);
result2 = f_min(c1, c2);
result3 = f_equal(result1, result2);
if(result3==0)
printf("두개의 실수는 서로 다름\n");
else if(result3 == 1)
printf("두개의 실수는 서로 같음\n");
}
#include <stdio.h>
double round(double f)
{
double result;
result = (int)(f+0.5);
return result;
}
int main(void)
{
double x;
printf("실수를 입력하시오:");
scanf("%lf", &x);
printf("반올림한 값은 %lf입니다.\n", round(x));
return 0;
}
#include <stdio.h>
int is_leap(int year)
{
int day;
if((year%4==0)&&(year%100!=0)||(year%400==0))
day = 366;
else
day =365;
return day;
}
int main(void)
{
int year;
printf("연도를 입력하시오:");
scanf("%d", &year);
printf("%d년은 %d일입니다.\n", year, is_leap(year));
return 0;
}
#include <stdio.h>
double factorial()
{
double e=1;
int n, f=1, i;
printf("어디까지 계산할까요: ");
scanf("%d", &n);
for(i=1;i<=n;i++)
{
f*=i;
e+=1.0/f;
}
return e;
}
int main(void)
{
printf("오일러의 수는 %lf입니다.\n", factorial());
return 0;
}
#include <stdio.h>
int is_prime()
{
int count=0, i, k;
for(i=2;i<=100;i++)
{
for(k=1;k<=i;k++)
{
if(i%k==0)
count++;
}
if(count==2)
printf("%d ", i);
count=0;
}
}
int main(void)
{
printf("2부터 100사이의 소수를 출력합니다.\n");
is_prime();
return 0;
}