반응형
#include "stdafx.h"
int aa(int a,int b);
int c,d; // 전역 변수를 선언해 준다.
int main()
{
int i,j,k;
while(1)
{
printf("두 개의 정수를 입력하세요.:");
scanf("%d %d",&i,&j);
k=aa(i,j);
printf("%d %d\n",c,d); //전역 변수 출력
}
return 0;
}
int aa(int a,int b)
{
if(a>b) //c,d 의 값 계산
{
c=a/2; d=b*2;
}else(a<b);
{
c=a*2; d=b/2;
}
return 0;
}
반응형
'공부 > C언어' 카테고리의 다른 글
c언어 :: 정보올림피아드 반복제어문2 - 형성평가4 (0) | 2021.05.15 |
---|---|
c언어 :: 정보올림피아드 반복제어문1 - 형성평가 5 (0) | 2021.05.14 |
c언어 :: n 입력 받아 n*n 형태로 10미만의 홀수 출력하기 (0) | 2021.05.12 |
c 언어 :: 배열 예제 (0) | 2021.05.11 |
c언어 :: 내림차순, 오름차순 (0) | 2021.05.10 |