커서의 위치를 지정한 구구단을 출력
구구단의 내용을 대각선 방향으로 이동시키며 출력
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
void gotoxy(int x, int y);
int main(void)
{
int i;
system("cls");
for(i=1;i<=9;i++)
{
gotoxy(i, i);
printf("%d*%d=%d\n", 1, i, 1*i);
}
return 0;
}
void gotoxy(int x, int y)
{
COORD Pos = {x - 1, y - 1};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), Pos);
}
// 실행 결과
구구단의 내용을 대각선 방향으로 이동시키며 출력
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
void gotoxy(int x, int y);
int main(void)
{
int i;
system("cls");
for(i=1;i<=9;i++)
{
gotoxy(i, i);
printf("%d*%d=%d\n", 1, i, 1*i);
}
return 0;
}
void gotoxy(int x, int y)
{
COORD Pos = {x - 1, y - 1};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), Pos);
}
// 실행 결과
'공부 > c언어' 카테고리의 다른 글
[c언어] 날짜와 시간에 대해 구조체 멤버별로 구분하여 출력 (1) | 2011.05.24 |
---|---|
[c언어] 현재의 날짜와 시간을 출력(time, localtime, asctime) (0) | 2011.05.24 |
[c언어] 구구단 출력과 화면 제어 (0) | 2011.05.21 |
[c언어] 0도에서 90도까지 변화할 때 삼각 함수 결과(sin, cos) (1) | 2011.05.21 |
[c언어] 각도를 라디안, 라디안을 각도로 변환 (1) | 2011.05.21 |