{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

C语言程序设计

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

C语言程序设计

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《C语言程序设计》采用“提出问题-分析问题-解决问题-实例总结”的方式,将“实例引导、编程应用为驱动”贯穿在全书中,每章将相关知识融合到实例巾。使学生经过“认识-模仿-编写”3个阶段,学会程序设计.《C语言程序设计》主要讲解了C语言概述、C语言程序基础、程序控制结构、数组、函数、复杂数据类型、链表和树、综合设计实例。书中实例均已在C什环境中调试通过。《C语言程序设计》可作为高等学校非计算机专业的高级语言程序设计教材,也可作为计算机等级考试的参考书。
Catalogue

第1章 C语言概述
1.1 C语言的发展
1.2 初步认识简单的C程序
1.3 编写简单的C程序
1.4 程序与算法
1.5 C语言的编程风格
习题

第2章 C语言程序基础
2.1 基本数据类型
2.2 常量和变量
2.3 运算符和表达式
2.4 类型转换
2.5 指针数据类型
2.6 数据的输入与输出
2.7 预处理
习题二

第3章 程序控制结构
3.1 分支结构
3.2 循环结构
3.3 综合应用实例
习题三

第4章 数组
4.1 一维数组
4.2 多维数组
4.3 指针与一维数组
4.4 指针与多维数组
4.5 指针数组
4.6 动态数组
4.7 综合应用实例
习题四

第5章 函数
5.1 函数的基本应用
5.2 数据传递
5.3 函数指针
5.4 函数的嵌套调用
5.5 函数的递归调用
5.6 变量的作用域
5.7 变量的存储类型
5.8 main()函数的参数
5.9 综合应用实例
习题五

第6章 复杂数据类型
6.1 结构体
6.2 枚举类型
6.3 用户自定义类型
6.4 文件类型
6.5 综合应用实例
习题六

第7章 链表和树
7.1 链表
7.2 树
7.3 综合应用实例
习题七

第8章 综合设计实例
8.1 简单集合运算实例
8.2 计算100的阶乘实例
8.3 综合设计报告
参考文献

Book Abstract

程序设计是一门技术,需要相应的理论、技术、方法和工具来支持。就程序设计方法和技术而言,主要经过了结构化程序设计和面向对象的程序设计两个阶段。
结构化程序设计方法是一种自顶向下、逐步求精、模块化的程序设计方法。按照结构化程序设计方法的思想,就是将给定的一个功能较多的复杂问题合理地划分为若干个较简单的子问题,还可以将这些子问题再分解为若干功能更简单的子任务(可将每个子任务看作一个模块),以便于“分而治之”。如图1.23所示为一个较复杂问题的模块分解过程。
在模块划分时,应该尽可能地保证数据的独立性和模块功能的唯一性。也就是说,各模块间的耦合性要尽量弱,即一个模块最好像是一个黑盒子,模块间的数据交换要尽量少;模块的内聚性要尽量强,即每个模块只完成单一的功能。
结构化程序设计强调程序设计风格和程序结构的规范化,提倡结构清晰。良好的程序设计风格可以使程序结构清晰合理,程序代码便于维护。著名的“清晰第一,效率第二”论点已成为当今主导的程序设计风格。
采用结构化程序设计方法的好处是:可以使每个模块功能明确,模块间的关系简单、清晰(即可读性强),每个模块内部的修改尽可能不影响其他模块(即独立性好),同时每个模块的正确性容易得到验证(即可维护性好)。
例1.5中的代码、算法正确,也能够编译、连接到执行,而且得到如图1.17所示的运行结果。但从应用程序与用户交互性角度看,这个结果是不友好的。如图1.24所示为源程序代码与其对应的运行过程图。从运行过程图的运行窗口看,如果不阅读源程序,用户就很难知道当前需要干什么。因此在源程序中,增加输入/输出提示就可解决这一问题,如图1.25所示。
通过上述讨论,应用程序与用户交互性就是指程序在执行过程中,程序与用户之间的交流特性。如在程序执行过程中,当需要用户输入数据时,程序应该给予相应的提示信息,让用户知道当前应该干什么;当程序经过处理后输出数据时,应该让用户知道输出数据的含义。如果程序不能够确保这样的交互性,在程序运行过程中就必须依赖源程序。
……
Introduction

进入21世纪以来,“程序设计语言”课程更侧重于应用能力的培养,更注重掌握应用的方法和技能,为了避免学生一听就懂,一做就错,本书尝试改变过去先系统学习理论知识再应用的编写模式,采取以应用为目的而学习和拓展有关理论知识的编写思路。
“C语言程序设计”是一门实践性很强的课程,如果没有经过大量的实践训练,很难掌握这门课程的主要知识点.本书在编写方式上不再采用传统课程的“提出概念-解释概念-举例说明”方式,而是采用“提出问题-分析问题-解决问题-实例总结”的方式,将“实例引导、编程应用为驱动”贯穿在全书中,每章将相关知识融合到不同的实例中。
本书在编写过程中,考虑了“程序设计语言”课程以应用为核心的特点,重点培养学生分析问题、解决问题的能力,通过对实例的学习增强学生的动手能力,在培养应用型人才方法上做了一点尝试。
本书共8章。“第1章C语言概述”主要讲解了程序算法描述、编程风格、简单编程实例和编程环境。“第2章C语言程序基础”主要讲解了基本数据类型、常量和变量、运算符和表达式、标准输入/输出、文件输入/输出及预处理命令.“第3章程序控制结构”主要讲解了分支结构和循环结构。“第4章数组”主要讲解了一维数组、多维数组、指针与一维数组、指针与多维数组、指针数组、动态数组。“第5章函数”主要讲解了函数的基本应用、数据传递、函数指针、函数的嵌套调用、函数的递归调用、变量的作用域和存储类型及main()函数的参数。“第6章复杂数据类型”主要讲解了结构体、枚举类型、用户自定义类型及文件类型。“第7章链表和树”主要讲解了链表的应用及树的概念和简单应用。“第8章综合设计实例”主要讲解了一个从问题描述、程序设计、编程、测试及书写实验报告的全过程的课程设计实例。
全书由王建国和邹显春统稿,参加本书编写工作的有北京师范大学的朱小明,忻州师范学院的王建国、梁云川、赵青杉、胡志军、史月美、王惠,西南大学的邹显春,张颖、陈汉蓉、吴代贤,重庆师范大学的何丽,重庆工商大学的张小莉、李盛瑜、丁明勇。
在编写过程中,北京师范大学沈复兴教授、天津师范大学曲建民教授、东北师范大学李雁翎教授、华中师范大学胡金柱教授给予了精心的指导,并详细阅读了书稿,提出许多有建设性的修改意见,在此向他们表示衷心的感谢。

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book