教学文库网 - 权威文档分享云平台
您的当前位置:首页 > 文库大全 > 求职职场 >

C语言程序设计现代方法第16章答案(2)

来源:网络收集 时间:2026-09-09
导读: scanf(%d, number); i = find_part(number, inv, np); if (i = 0) { printf(Part name: %s\n, inv[i].name); printf(Quantity on hand: %d\n, inv[i].on_hand); } else printf(Part not found.\n); } /************

scanf("%d", &number);

i = find_part(number, inv, np);

if (i >= 0) {

printf("Part name: %s\n", inv[i].name);

printf("Quantity on hand: %d\n", inv[i].on_hand); } else

printf("Part not found.\n");

}

/********************************************************** * update: Prompts the user to enter a part number. * * Prints an error message if the part can't be * * found in the inv array; otherwise, prompts the * * user to enter change in quantity on hand and * * updates the array. * **********************************************************/ void update(struct part inv[], int np)

{

int i, number, change;

printf("Enter part number: ");

scanf("%d", &number);

i = find_part(number, inv, np);

if (i >= 0) {

printf("Enter change in quantity on hand: ");

scanf("%d", &change);

inv[i].on_hand += change;

} else

printf("Part not found.\n");

}

/********************************************************** * print: Prints a listing of all parts in the inv array, *

* showing the part number, part name, and * * quantity on hand. Parts are printed in the * * order in which they were entered into the * * array. * **********************************************************/ void print(const struct part inv[], int np)

{

int i;

printf("Part Number Part Name " "Quantity on Hand\n");

for (i = 0; i < np; i++)

printf("%7d %-25s%11d\n", inv[i].number,

inv[i].name, inv[i].on_hand);

}

C语言程序设计现代方法第16章答案(2).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.jiaowen.net/wenku/121648.html(转载请注明文章来源)
Copyright © 2020-2025 教文网 版权所有
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:78024566 邮箱:78024566@qq.com
苏ICP备19068818号-2
Top
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)