Update cv1/program.c

This commit is contained in:
Yurii Yakovenko 2024-10-01 19:27:56 +00:00
parent bacc2869ef
commit 6bc162f509

View File

@ -43,16 +43,15 @@ int main()
printf("Zadaj hladanu surovinu:\n"); printf("Zadaj hladanu surovinu:\n");
scanf("%s", pizz); scanf("%s", pizz);
printf("Zadaj␣jedalny␣listok:\n");
while(1) while(1)
{ {
printf("Zadaj␣jedalny␣listok:\n");
do do
{ {
p=fgets(r, 299, stdin); p=fgets(r, 299, stdin);
} }while(p!=NULL && p[0]=='\n');
while(p!=NULL && p[0]=='\n');
{
if(p==NULL) if(p==NULL)
{ {
break; break;
@ -66,7 +65,7 @@ int main()
count++; count++;
printf("%s %.2f\n", r, price); printf("%s %.2f\n", r, price);
} }
}
} }
printf("Nacitanyh %d poloziek", count); printf("Nacitanyh %d poloziek", count);