Hacer * con la matris
Publicado por Nelia (4 intervenciones) el 13/12/2018 04:54:04
Hacer un asterisco * con la matriz.
Me ayudan ?
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
#include <iostream>
using namespace std;
int main() {
char M[20][20];
int f=0;
int c=0;
int lim=10;
for (c=0;c<20;c++)
{
for (f=0;f<20;f++)
{
if (f==c)
{
M[f][c]='1';
}
else
{
M[f][c]=' ';
}
}
}
for (c=0;c<20;c++)
{
for (f=0;f<20;f++)
{
if (f+c==19)
{
M[f][c]='1';
}
}
}
for (c=0;c<20;c++)
{
for (f=0;f<20;f++)
{
if (f==10 or c==10)
{
M[f][c]='1';
}
cout<<M[f][c];
}
cout<<endl;
}
}
/// Este tiene que quedar con el asterisco encerrado en un cuadrado pero no sale
#include <iostream>
using namespace std;
int main()
{
char m[20][20];
for(int a=0;a<20;a++)
{
for(int b=0;b<20;b++)
{
if(a==b or a+b==19 or a==10 or b==10 or a==0 or a==19 or b==0 or b==19)
{
m[a][b]='1';
}
else
{
m[a][b]=' ';
}
cout<<m[a][b]<<" ";
}
cout<<endl;
}
}
//// En este tengo que hacer dos matrices y el segundo con la linea en 1
#include <iostream>
using namespace std;
int main()
{
int M1[6][6];
int M2[6][6];
int f=0;
int c=0;
for (c=0;c<6;c++)
{
for (f=0;f<6;f++)
{
M1[f][c]=1;
cout<<M1[f][c];
}
cout<<endl;
}
cout<<endl;
for (c=0;c<6;c++)
{
for (f=0;f<6;f++)
{
if (f==c)
{
M2[f][c]=0;
}
else
{
M2[f][c]=1;
}
cout<<M2[f][c];
}
cout<<endl;
}
}
//// Y en este utilizar el random
#include <iostream>
using namespace std;
int main()
{
srand(time(NULL));
int M[6][6];
for (int c=0;c<6;c++)
{
for (int f=0;f<6;f++)
{
M[f][c]=rand()%10;
cout<<M[f][c];
}
cout<<endl;
}
return 0;
}
Me ayudan ?
Valora esta pregunta
0