{{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
Editer Recommend

本教材起点较低,不需具备程序设计语言基础知识;在内容编排上,注意分散难点,便于读者循序渐进地学习;本书主要讲解C语言最基本、最常用的内容,控制C语言中出现频率很低或与语言的实践版本相关内容的篇幅,把重点放在语言本身的难点(如指针)和程序设计技巧方面;根据应用型人才的培养特点,采用基础知识加例题的方法,使读者能够尽快掌握相关知识;本书结合全国计算机等级考试,在各章后提供了较多的习题,使读者能够得到有效的训练。
Content Description

《C语言程序设计(计算机二级教程)》主要内容包括二级考试基础知识、C语言程序设计概述、基本数据类型、运算符及表达式、顺序结构程序设计、选择结构程序设计、循环结构程序设计、函数、指针、数组、用户标识符的作用域和存储类别、编译预处理和动态存储分配、结构体与共用体、位运算、文件、面向对象程序设计基础、上机考试指导共16章。书中给出了大量的例题和习题,书后给出了附录,便于学生自学。依据高等院校“C语言程序设计”课程教学内容的基本要求而编写,充分考虑到理论与实践的结合,在讲解C语言程序设计基本知识的同时,更注重讲解相应的程序设计技巧、常用算法以及具有实用价值的程序实例,并设有专门章节介绍上机步骤、调试技巧。《C语言程序设计(计算机二级教程)》既有严密完整的理论体系,又具有较强的实用性。
《C语言程序设计(计算机二级教程)》适合普通高等院校本、专科计算机与非计算机专业作为“C语言程序设计”课程教材使用,也适合C语言初学者用作计算机二级考试的学习与参考用书。
Catalogue

第1章 二级考试基础知识
1.1 程序设计基础
1.1.1 面向结构的程序设计
1.1.2 面向对象的程序设计
1.2 数据结构
1.2.1 算法
1.2.2 链表、队列、栈的基本概念
1.2.3 二叉树的遍历
1.3 数据库
1.3.1 数据、信息和数据处理
1.3.2 数据库系统概述
1.3.3 数据库描述
1.3.4 数据库管理系统
1.4 软件工程
1.4.1 软件工程的基本概念
1.4.2 结构化分析方法
1.4.3 结构化设计方法
1.4.4 软件测试
1.4.5 程序的调试
本章小结
历年试题汇集

第2章 C语言程序设计概述
2.1 C语言概述
2.2 简单的C程序构成及格式
2.3 C语言开发工具
2.4 良好的程序设计风格
本章小结
历年试题汇集
课后练习

第3章 基本数据类型、运算符及表达式
3.1 C语言的数据类型
3.2 常量、变量和标识符
3.3 整型数据
3.4 实型数据
3.5 字符型数据
3.6 C语言的运算符与表达式
3.7 数据类型转换
本章小结
历年试题汇集
课后练习

第4章 顺序结构程序设计
第5章 选择结构程序设计
第6章 循环结构程序设计
第7章 函数
第8章 指针
第9章 数组
第10章 用户标识符的作用域和存储类型
第11章 编译预处理和动态存储分配
第12章 结构体与共用体
第13章 位运算
第14章 文件
第15章 面向对象程序设计基础
第16章 上级考试指导
附录A C语言常用关键字及说明
附录B ASCII码表
附录C C语言运算符及优先级
附录D 常用库函数
参考文献
Book Abstract

第1章 级考试基础知识
【本章考点和学习目标】
1.结构化程序设计与面向对象程序设计的特点和区别。
2.各种数据结构的概念和特点;实现各种数据结构的算法。
3.数据库的基本概念和原理。
4.软件工程的基本概念和主要特点。
【本章重难点】
重点:数据结构的概念和特点。
难点:数据结构的算法。
本章主要从全国计算机等级考试二级考试的角度出发,介绍了程序设计、数据结构、数据库和软件工程4个方面的基本概念和理论。
1.1 程序设计基础
1.1.1 面向结构的程序设计
构化程序的概念首先是从以往编程过程中无限制地使用转移语句而提出的。转移语句程序的控制流程强制性地转向程序的任一处,在传统流程图中就是用“很随意”的流程述这种转移功能的。如果一个程序中多处出现这种转移情况,将会导致整个程序流程寻,程序结构杂乱无章。这样的程序是令人难l22N解和接受的,并且容易出错。在实际品开发过程中,为了增强软件的可读性,往往限制转移语句的使用,而改用循环语句或句。很多理论和实践已经证明,选择语句和循环语句完全可以替代转移语句,而不增加实现难度。结构化程序由迪克斯特拉(E.W.Dijkstra)在1969年提出,它是以模块化设心,将待开发的软件系统划分为若干个相互独立的模块,这样使完成每一个模块的工作纯而明确,为设计一些较大的软件打下了良好的基础。
于模块相互独立,因此在设计其中一个模块时,不会受到其它模块的牵连,因而可将原复杂的问题化简为一系列简单模块的设计。模块的独立性还为扩充已有的系统、建立带来了不少的方便,因为我们可以充分利用现有的模块作积木式的扩展。
照结构化程序设计的观点,任何算法功能都可以通过由程序模块组成的3种基本程序组合——顺序结构、选择结构和循环结构来实现。
Introduction

目前我国高等教育已进入普及时代,如何培养满足市场需求的应用型人才,是一个重要课题。掌握计算机知识和应用,无疑是培养新型人才的一个重要环节。计算机技术已与其它学科相互交融,成为推动社会发展的动力。无论什么专业的学生,都必须具备计算机的基础知识和应用能力。因为计算机技术已经成为高等院校全面素质教育中极为重要的一部分。
近年来,由于C语言具有功能丰富、表达力强、使用灵活方便、应用面广、目标程序效率高、可移植性好等特点,所以被计算机专业和非计算机专业应用人员所使用。许多高等院校不仅在计算机专业开设了C语言课程,而且也在非计算机专业开设了C语言课程。全国计算机等级考试、全国计算机应用技术证书考试和全国各地区组织的大学生计算机统一考试都将C语言列入了考试范围。因此,学习C语言已经成为广大计算机应用人员的基本要求。
由于C语言涉及的概念比较复杂,规则繁多,使用灵活,容易出错,不少初学者感到困难,所以作者在北京航空航天大学出版社的支持下,根据长期从事第一线教学的经验,编写了本书。本教材根据读者对象的性质,力图体现以下特色:
①起点较低,不需具备程序设计语言基础知识。很多C语言的教材都要求读者先前学过一门程序设计语言。但本教材从程序设计的基础知识讲起,把一些经典算法的来龙去脉交代清楚,读者不需要有其它程序设计语言的基础即可学懂。
②概念准确,编排合理。在内容编排上,注意分散难点,便于读者循序渐进地学习。
③详略得当,重点突出。本书主要讲解C语言最基本、最常用的内容,控制C语言中出现频率很低或与语言的实践版本相关内容的篇幅,把重点放在语言本身的难点(如指针)和程序设计技巧方面。
④深入浅出,讲解通俗。根据应用型人才的培养特点,采用基础知识加例题的方法,使读者能够尽快掌握相关知识。
⑤强化实践,重视应用。本教材力求使读者学完之后,不仅能学会C语言的语法、语义,更重要的是掌握C语言程序设计的技巧,具备编程解决实际问题的能力。所以本书结合全国计算机等级考试,在各章后提供了较多的习题,使读者能够得到有效的训练。

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