Dev - C++ - PROBLEMA AL IMPRIMIR UN CUADRADO CON LA FUNCION GOTOXY IMPLEMENTANDO LA FUNCION FOR

 
Vista:
sin imagen de perfil

PROBLEMA AL IMPRIMIR UN CUADRADO CON LA FUNCION GOTOXY IMPLEMENTANDO LA FUNCION FOR

Publicado por CHARLY (10 intervenciones) el 28/04/2017 18:11:12
POR ALGUNA RAZON NO ME IMPRIME EL CUADRADO DONDE DEJO EL CURSOR SOLO IMPRIIME LA PRIMER LINEA AL INICIAR EL PROGRAMA PRESIONAR F12 O FN+F12 Y ELEGIR EL CUADRADO LUEGO MOVER EL CURSOR CON LAS FLECHAS ELEGIR LA POSICION DONDE SE VA A DIBUJAR EL CUADRADO YA INTENTE BASTANTES SOLUCIONES PERO NO LOGRO SOLUCIONAR EL PROBLEMA

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#include <iostream>
#include <windows.h>
#include <conio.h>
#include<math.h>
 
#define ARRIBA 72
#define ABAJO   80
#define IZQUIERDA 75
#define DERECHA 77
#define F12 -122
 
using namespace std;
 
void gotoxy (int x, int y);
void eliminar_cursor();
void mover_cursor(int x, int y);
void menu(int opc,int n,int l,int a,int i,int j,int r,bool badera);
 
int opc,tecla;
bool bandera=false;
int n,l,a,i,j,r;
int x,y;
//_____________________________________________________________________________________________________
 
 
int main()
{
eliminar_cursor();
 
 
gotoxy(x,y); cout<<"+";
 
mover_cursor(x,y);
 
menu(opc,n,l,a,i,j,r,bandera);
 
return 0;
}
 
//_____________________________________________________________________________________________________
 
 
void gotoxy(int x,int y)
{
HANDLE hCon;
hCon=GetStdHandle(STD_OUTPUT_HANDLE);
COORD dwPos;
dwPos.X=x;
dwPos.Y=y;
SetConsoleCursorPosition(hCon,dwPos);
}
 
void eliminar_cursor (){
    HANDLE hCon;
    hCon = GetStdHandle(STD_OUTPUT_HANDLE);
 
    CONSOLE_CURSOR_INFO cci;
    cci.dwSize = 1;
    cci.bVisible = FALSE;
 
 
    SetConsoleCursorInfo(hCon,&cci);
}
 
void mover_cursor(int x, int y){
char tecla;
do
{
if (kbhit())
{
tecla=getch();
gotoxy(x,y); cout<<" ";
 
 
if (tecla==72)    // arriba
	{	if(y==0)
			y=47;
		else
			y--;
	}
 
if (tecla==80) //  abajo
	{
		if(y==47)
			y=0;
		else
		y++;
	}
if (tecla==75)  // izquierda
	{
		if(x==0)
			x=121;
		else
		x--;
	}
if (tecla==77) // derecha
	{
		if(x==121)
			x=0;
		else
			x++;
	}
 
gotoxy(x,y);  cout<<"+";
 
}
}while(tecla!=F12);
 
Sleep(10);
 
}
 
        void menu(int opc,int n,int l,int a,int i,int j,int r,bool bandera){
 
 
do
{
system("cls");
gotoxy(50,5); cout<<".:FIGURAS GEOMETRICAS:."<<endl<<endl;
 
    cout<<"1. CUADRADO"<<endl;
    cout<<"2. RECTANGULO"<<endl;
    cout<<"3. CIRCULO"<<endl;
    cout<<"4. TRIANGULO"<<endl;
    cout<<"5. SALIR"<<endl;
 
    cout<<"DIGITE EL NUMERO DE LA FIGURA QUE DESEA DIBUJAR: ";
    cin>>opc;
 
    switch(opc){
 
//CUADRADO________________________________________________________________________________________
 
       case 1:  cout<<"digite el tamaño del cuadrado :" ;
                cin>>n;
    system("cls");
 
mover_cursor(x,y);
 
 
                 for (i=1; i<=n; i++){
                    for (j=1; j<=n; j++){
                            if (i>1 && i<n && j>1 && j<n){
                       cout<<" ";}
                     else{
                      cout<<"*";
                     }
 
 
       }cout<<endl;
 
    }
break;
 
//RECTANGULO________________________________________________________________________________________
 
       case 2: cout<<"digite la base del rectangulo: " ; cin>>l;
                    cout<<"digite el lado del rectangulo: "; cin>>a;
 
                  for (i=1; i<=a; i++){
                    for (j=1; j<=l; j++){
                        if (i>1 && i<a && j>1 && j<l){
                        cout<<" ";
                }else{
 
        cout<<"®";
           }
        }cout<<endl;
}
 
 
break;
 
//CIRCULO________________________________________________________________________________________
 
       case 3:  int radio;
    cout<<"ingrese el radio del circulo: ";
    cin>>radio;
 
        for (j=0;j<=radio*2;j++)
          {
            for (i=0;i<=radio*2;i++)
            {
                if (pow(i-radio,2.0)+ pow(j-radio,2.0)<=pow(radio,2)){
                    cout<<"®";
 
                    }else{
                        cout<<" ";
        }
            }
        cout<<endl;
    }
 
   break;
 
 
//TRIANGULO________________________________________________________________________________________
 
       case 4:cout<<"digite la altura del triangulo: ";
       cin>>n;
 
            for(i=1;i<=n;i++){
                for(j=1;j<=n-i;j++){
                cout<<" ";
                }
                for(j=1;j<=2*i-1;j++){
                cout<<":";
                }
cout<<endl;
}
 
     break;
 
 
//SALIR________________________________________________________________________________________
 
      case 5:
          bandera=true;
				//exit(1);
            break;
cout<<endl;
    }
 
    cout << "\nPulsa una tecla para continuar...";
      getch();
 
    system("cls");
 
    }while(bandera!=true);
 
}
 
 
//_____________________________________________________________________________________________________
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder