Форум групп 22475 и 22478 ЕФ КГТУ

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Форум групп 22475 и 22478 ЕФ КГТУ » Учеба » ПнаЯВУ (C)


ПнаЯВУ (C)

Сообщений 61 страница 68 из 68

61

Листинг MASSIV12

#include<stdio.h>
#include<math.h>
#include<conio.h>
main()
{
int d[100][100],i,j,n,s,t;
n=10,s=0,t=0;
clrscr();
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
d[i][j]=rand()/160-100;
printf("%4d",d[i][j]);
}
printf("\n");
}
printf("\nVvedite nomer stolbcza s ne bolee %d: ",n);
scanf("%d",&s);
printf("Vvedite chislo: ");
scanf("%d",&t);
for (i=0;i<n;i++)
d[i][s-1]=t;
for (i=0;i<n;i++)
{
for (j=0;j<n;j++)
printf("%4d",d[i][j]);
printf("\n");
}
getch();
return 0;
}

:music:

0

62

Листинг MASSIV13

#include<stdio.h>
#include<math.h>
#include<conio.h>
main()
{
int d[100][100],i,j,n,s,t;
n=10,s=0,t=1;
clrscr();
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
d[i][j]=rand()/1600-2;
printf("%4d",d[i][j]);
}
printf("\n");
}
printf("\nVvedite nomer stolbcza s ne bolee %d: ",n);
scanf("%d",&s);
for (i=0;i<n;i++)
t=t*d[i][s-1];
if (abs(t/100)>=1)
if (abs(t/1000)<1)
{
printf("Proizvedenie %d-go stolbcza=%d\njavljaetsja 3-h znachnim chislom",s,t);
getch();
return 0;
}
printf("Proizvedenie %d-go stolbcza=%d\nNE javljaetsja 3-h znachnim chislom",s,t);
getch();
return 0;
}

0

63

Листинг MASSIV14

#include<stdio.h>
#include<math.h>
#include<conio.h>
main()
{
int d[100][100],i,j,n,r,s,t;
n=5,r=0,s=0,t=0;
clrscr();
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
d[i][j]=rand()/160-100;
printf("%4d",d[i][j]);
}
printf("\n");
}
printf("\nVvedite nomer stroki s ne bolee %d: ",n);
scanf("%d",&r);
printf("Vvedite chislo: ");
scanf("%d",&s);
for (j=0;j<n;j++)
t=t+d[r-1][j];
if (t>s)
printf("Summa elementov %d-ei stroki=%d i previshaet zadannoe chislo %d",r,t,s);
else
printf("Summa elementov %d-ei stroki=%d i NE previshaet zadannoe chislo %d",r,t,s);
getch();
return 0;
}
:crazyfun:

+1

64


Massiv20

#include<stdio.h>
#include<math.h>
#include<conio.h>
main()
{
  int t,i,
      a[3][3],
      b[3][3],
      c[3][3];

  clrscr();

  for (t=0;t<3;t++)
   {
    for (i=0;i<3;i++)
    {
     a[t][i]=rand();
     printf("%9d",a[t][i]);
    }
    printf("\n");
   }
  printf("\n");

  for (t=0;t<3;t++)
   {
    for (i=0;i<3;i++)
    {
     b[t][i]=rand();
     printf("%9d",b[t][i]);
    }
    printf("\n");
   }
  printf("\n");

  for (t=0;t<3;t++)
   {
    for(i=0;i<3;i++)
    {
    c[t][i]=a[t][i]+b[t][i];
    printf("%9d",c[t][i]);
    }
    printf("\n");
   }

  getch();
  return 0;
}

%-)

+1

65


MASSIV9

#include<stdio.h>
#include<math.h>
#include<conio.h>
main()
{
  int t,i,q; float p;
  int d[3][3];
  p=0,q=0;;
  clrscr();
  for (t=0;t<3;t++)
  {
   for (i=0;i<3;i++)
   {
    d[t][i]=rand()/180-100;
    printf("%8d",d[t][i]);
   }
   printf("\n");
  }
   p=p+d[t][i];
   p=p/9;
   printf("\n");
   printf("%8f",p);

   printf("\n");
   for (t=0;t<3;t++)
   {
    for (i=0;i<3;i++)
    if (d[t][i]<p)
    q=q+d[t][i];
   }
   printf("\n");
   printf("%8d",q);
  getch();
return 0;
}

:dontknow:

0

66

Листинг MASSIV15

#include<stdio.h>
#include<math.h>
#include<conio.h>
main()
{
int p,i,j,d[10][10];
p=0;
clrscr();
for(i=0;i<10;i++)
{
for(j=0;j<10;j++)
{
d[i][j]=rand()/160-100;
printf("%4d",d[i][j]);
}
printf("\n");
}
for (i=0;i<10;i++)
{
{
for (j=0;j<10;j++)
if (d[i][j]<0)
p=p+d[i][j];
}
printf("Summa otriczatel'nih elementov v %d-i stroke=%d\n",i+1,p);
p=0;
}
getch();
return 0;
}
:crazy:

0

67


MASSIV18

#include<stdio.h>
#include<math.h>
#include<conio.h>
main()
{
int t,i,n,p,q,r, d[100][100];
p=0,n=0,q=0,r=0;
clrscr();
printf("Vvedite n:");
scanf("%d",&n);
for(t=0;t<n;t++)
  {
  for(i=0;i<n;i++)
   {
   d[t][i]=rand()/160;
   printf("%4d",d[t][i]);
   }
  p=p+d[0][i];
  printf("\n");
  }
for(t=1;t<n;t++)
  {
  q=0;
  for(i=0;i<n;i++)
   {
   q=q+d[t][i];
   if(p<q)
    {
    p=q;
    r=t;
    }
   }
  }
printf("Max=%d v %d stroke",p,r+1);
getch();
return 0;
}

:disappointed:

+1

68


MASSIV30

#include<stdio.h>
#include<math.h>
#include<conio.h>
main()
{
int k,p,t,i,d[100][100];
p=0;
clrscr();
printf("Do:\n");
for (t=0;t<10;t++)
{
  for (i=0;i<10;i++)
  {
   d[t][i]=p;
   printf("%5d",d[t][i]);
   p++;
  }
  printf("\n");
}
printf("Vvedite k:");
scanf("%d",&k);
printf("Posle:\n");
k=k-1;
for (t=0;t<10;t++)
{
  for (i=10;i>k;i--)
  d[t][i]=d[t][i-1];
  d[t][k]=0;
}
for (i=0;i<10;i++)
for (t=0;t<10;t++)
{
  for(i=0;i<11;i++)
  printf("%5d",d[t][i]);
  printf("\n");
}
getch();
return 0;
}

:hobo:

+1


Вы здесь » Форум групп 22475 и 22478 ЕФ КГТУ » Учеба » ПнаЯВУ (C)