请选择 进入手机版 | 继续访问电脑版
楼主: exuan1991
5039 65

Learn to Program with C-Learn to Program using the Popular C Programming Languag   [推广有奖]

学术权威

5%

还不是VIP/贵宾

-

威望
7
论坛币
500935 个
通用积分
18563.5046
学术水平
597 点
热心指数
669 点
信用等级
496 点
经验
77194 点
帖子
995
精华
9
在线时间
3588 小时
注册时间
2012-1-5
最后登录
2024-3-16

初级学术勋章 中级学术勋章 高级学术勋章

exuan1991 发表于 2015-12-26 09:54:47 |显示全部楼层 |坛友微信交流群
相似文件 换一批

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币

Learn to Program with C


     Learn to Program with C teaches computer programming to the complete beginner using the native C language. As such, it assumes you have no knowledge whatsoever about programming. The main goal of this book is to teach fundamental programming principles using C, one of the most widely used programming languages in the world today.
We discuss only those features and statements in C that are necessary to achieve our goal. Once you learn the principles well, they can be applied to any language. If you are worried that you are not good at high-school mathematics, don’t be. It is a myth that you must be good at mathematics to learn programming.
C is considered a ‘modern’ language even though its roots date back to the 1970s. Originally, C was designed for writing ‘systems’ programs―things like operating systems, editors, compilers, assemblers and input/output utility programs. But, today, C is used for writing all kinds of applications programs as well―word processing programs, spreadsheet programs, database management programs, accounting programs, games, robots, embedded systems/electronics (i.e., Arduino), educational software―the list is endless.

Amazon介绍:Learn to Program with C

本帖隐藏的内容

Learn to Program with C-Apress (2015).pdf (3.01 MB, 需要: 20 个论坛币)



41zlnNy1asL__SX361_BO1,204,203,200_.jpg

二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Programming Program popular Learn opula principles statements necessary knowledge computer

已有 5 人评分经验 论坛币 学术水平 热心指数 信用等级 收起 理由
2010517155lpq + 50 精彩帖子
狂热的爱好者 + 3 精彩帖子
np84 + 100 精彩帖子
ReneeBK + 100 + 1 + 1 + 1 精彩帖子
Nicolle + 100 + 100 + 1 精彩帖子

总评分: 经验 + 350  论坛币 + 100  学术水平 + 1  热心指数 + 5  信用等级 + 1   查看全部评分

本帖被以下文库推荐

ReneeBK 发表于 2015-12-26 10:35:12 |显示全部楼层 |坛友微信交流群
  1. Program P4.1
  2. //print job charge based on hours worked and cost of parts
  3. #include <stdio.h>
  4. int main() {
  5. double hours, parts, jobCharge;
  6. printf("Hours worked? ");
  7. scanf("%lf", &hours);
  8. printf("Cost of parts? ");
  9. scanf("%lf", &parts);
  10. jobCharge = hours * 100 + parts;
  11. if (jobCharge < 150) jobCharge = 150;
  12. printf("\nCharge for the job: $%3.2f\n", jobCharge);
  13. }
复制代码

已有 1 人评分经验 收起 理由
2010517155lpq + 2 精彩帖子

总评分: 经验 + 2   查看全部评分

使用道具

ReneeBK 发表于 2015-12-26 10:39:03 |显示全部楼层 |坛友微信交流群
  1. Program P4.2
  2. //find the sum of two lengths given in meters and cm
  3. #include <stdio.h>
  4. int main() {
  5. int m1, cm1, m2, cm2, mSum, cmSum;
  6. printf("Enter values for m and cm: ");
  7. scanf("%d %d", &m1, &cm1);
  8. printf("Enter values for m and cm: ");
  9. scanf("%d %d", &m2, &cm2);
  10. mSum = m1 + m2; //add the meters
  11. cmSum = cm1 + cm2; //add the centimeters
  12. if (cmSum >= 100) {
  13. cmSum = cmSum - 100;
  14. mSum = mSum + 1;
  15. }
  16. printf("\nSum is %dm %dcm\n", mSum, cmSum);
  17. }
复制代码
已有 1 人评分经验 收起 理由
2010517155lpq + 2 精彩帖子

总评分: 经验 + 2   查看全部评分

使用道具

ReneeBK 发表于 2015-12-26 10:40:33 |显示全部楼层 |坛友微信交流群
  1. Program P4.3
  2. //find the sum of two lengths given in meters and cm
  3. #include <stdio.h>
  4. int main() {
  5. int m1, cm1, m2, cm2, mSum, cmSum;
  6. printf("Enter values for m and cm: ");
  7. scanf("%d %d", &m1, &cm1);
  8. printf("Enter values for m and cm: ");
  9. scanf("%d %d", &m2, &cm2);
  10. mSum = m1 + m2; //add the meters
  11. cmSum = cm1 + cm2; //add the centimeters
  12. if (cmSum >= 100) {
  13. mSum = mSum + cmSum / 100;
  14. cmSum = cmSum % 100;
  15. }
  16. printf("\nSum is %dm %dcm\n", mSum, cmSum);
  17. }
复制代码
已有 1 人评分经验 收起 理由
2010517155lpq + 2 精彩帖子

总评分: 经验 + 2   查看全部评分

使用道具

Nicolle 学生认证  发表于 2015-12-26 10:54:08 |显示全部楼层 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

使用道具

Nicolle 学生认证  发表于 2015-12-26 10:55:32 |显示全部楼层 |坛友微信交流群
提示: 作者被禁止或删除 内容自动屏蔽

使用道具

fengyg 企业认证  发表于 2015-12-26 12:41:31 |显示全部楼层 |坛友微信交流群
kankan
已有 1 人评分经验 收起 理由
2010517155lpq + 2 精彩帖子

总评分: 经验 + 2   查看全部评分

使用道具

nonoyes233 发表于 2015-12-26 13:03:51 |显示全部楼层 |坛友微信交流群
thanks......................................................
已有 1 人评分经验 收起 理由
2010517155lpq + 2 精彩帖子

总评分: 经验 + 2   查看全部评分

使用道具

soccy 发表于 2015-12-26 13:23:39 |显示全部楼层 |坛友微信交流群
......
已有 1 人评分经验 收起 理由
2010517155lpq + 2 精彩帖子

总评分: 经验 + 2   查看全部评分

使用道具

dasile123 发表于 2015-12-26 14:29:50 |显示全部楼层 |坛友微信交流群
非常好的一份资料,谢谢分享
已有 1 人评分经验 收起 理由
2010517155lpq + 6 精彩帖子

总评分: 经验 + 6   查看全部评分

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-3-29 01:59