А если так почему оно не выводит?
C++ |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| #include <stdio.h>
#include<conio.h>
#include <stdlib.h>
#include <math.h>
#include <iostream>
using namespace std;
void main()
{
int a[25],b[30];
int i,j;
printf("\n Massiv a\n");
for (i=0;i<25;i++)
{
scanf("%d",&a[i]);
}
for (i=0;i<25;i++);
{
printf("%5d",a[i]);
}
system("pause");
} |
|