Задание: скачать оба файла и исправить ошибки за плохим программистом, который плохо читал материалы по языку Си Необходимый ответ: файл Word с листингом кода и описанием того, что исправлено
Первое:
#include
#include

struct Distance
{
integer feet;
float inches;
}

int main()
{
struct Distance d1, d3;
struct Distance d2 = {11, 6.25};
print( "BBedute feet: " );
scanf( "%i", &d1.feet );
print( "BBedute inches: " );
scanf( "%f", &d1.inches );
d3,inches == d1.inches + d2.inches;
d3.feet = 0;
if(d3.inches >= 12.0)
{
d3.inches -= 12.0;
d3.feet++;
}
d3.feet += d1.feet + d2.feet;
print("%i\'-%f\"+", d1.feet, d1.inches );
print("%i\'-%f\" = ", d2.feet, d2.inches );
print("%i\'-%f\"\n", d3.feet, d3.inches);
getch();
return 0;
}
Второе:
#include
struct list
{
int n;
list*next;
}
list*f_el(int n)
{
list*t=new list;
t=>n=n;
t=>next=0;
return t;
}
void ins(list*h, int N)
{
list*p; list*c;
p=h; c=h->next;
while (c!=0)
{
if (c->n next;
}
list*t=f_el(N);
t->next=p->next;
p->next=t;
}
void pr(list*h)
{
for (h->next;h!=0;h=h->next)
printf("%d\n",h->n);
}
int main ()
{
list*h=new list;
h=>n=0;
h=>next=0;
int n;
printf ("Vvedite znachenie\n");
scanf("%d",&n);
while(n!=0)
{
ins(h,n);
printf("Vvesite 4islo\n");
scanf("%d",&n);
}
pr(h->next);
return 0;
}

Zloo6024600 Zloo6024600    1   13.01.2021 10:27    2

Другие вопросы по теме Информатика