c语言
文章平均质量分 72
加盾男爵
这个作者很懒,什么都没留下…
展开
-
C Primer Plus (第五版) 编程练习题答案
系统 ubuntukylin 14.04 编译器 gcc4.8.2史前巨坑第二季,施工中。。。第二章第三章第五章第六章 1-8题 第六章9-16题 第七章 1-6题 第七章 7-11题第八章 1-8题第九章 1-9题第十章 1-11题第十一章 1-15题第十二章 1-8题第十三章 1-13题第十四章 1-11题第十五章第十六章 1-7题第十七章...原创 2017-03-09 20:01:38 · 8519 阅读 · 0 评论 -
C Primer Plus 第十四章 编程练习 1-11题
第3题#include<stdio.h>#define Len 40#define Counts 100struct Book{ char title[Len]; char atuhor[Len]; float value;};int main(void){ int numbers = 0; struct Book books[Counts]; d...原创 2017-03-09 20:02:54 · 809 阅读 · 0 评论 -
C Primer Plus 第十二章 编程练习 1-8题
第1题#include<stdio.h>int critic(void);int main(void){ int realResult; printf("Please Try To Input Any INteger:\n"); scanf("%d",&realResult); while(realResult != 56) realResult...原创 2017-03-09 20:02:52 · 603 阅读 · 0 评论 -
C Primer Plus 第十一章 编程练习 1-15题
第1题#include<stdio.h>void readChar(char* words , int len);int main(void){ int LEN; printf("Please Input The Max Lenght:\n"); scanf("%d",&LEN); getchar(); char Letters[LEN]; rea...原创 2017-03-09 20:02:49 · 751 阅读 · 0 评论 -
C Primer Plus 第十三章 编程练习 1-13题
第一题#include<stdio.h>#include<stdlib.h>const int LEN = 100;int main(void){ char fileName[LEN]; FILE* tarFile; char ch; printf("PLease Input File Name:\n"); gets(fileName); ...原创 2017-03-09 20:02:18 · 1044 阅读 · 0 评论 -
C Primer Plus 第十章 编程练习 1-11题
第一题#include<stdio.h>#define Months 12#define Years 5int main(void){ const float rain[Years][Months] = { {4.3,4.3,4.3,3.0,2.0,1.2,0.2,0.5,2.1,3.6,1.1,0.9}, {1.1,2.2,2.2,2.2,1.1,2.2,...原创 2017-03-09 20:02:09 · 1003 阅读 · 1 评论 -
C Primer Plus 第九章 编程练习 1-9题
第一题#include<stdio.h>double Min(double x , double y);int main(void){ double X; double Y; printf("Please Input First Number:\n"); scanf("%lf",&X); getchar(); printf("Please Inp...原创 2017-03-09 20:02:06 · 777 阅读 · 0 评论 -
C Primer Plus 第八章 编程练习 1-8题
第一题#include<stdio.h>int main(void){ int Counts = 0; char Letters; printf("Please Input:\n"); while((Letters = getchar()) != EOF) ++Counts; printf("You Had Inputed %d Letters.",Co...原创 2017-03-09 20:02:04 · 1145 阅读 · 0 评论 -
C Primer Plus 第七章 编程练习 7-11题
第七题#include<stdio.h>#define PayHour 40.0#define PayLevel_1 300.0#define PayLevel_2 450.0int main(void){ double WorkTime; printf("Please Input Your Hours:\n"); scanf("%lf",&WorkTim...原创 2017-03-09 20:02:01 · 1095 阅读 · 0 评论 -
C Primer Plus 第七章 编程练习 1-6题
第一题#include<stdio.h>#define Space ' '#define Eof '#'#define LineBreak '\n'int main(void){ int CountSpace = 0; int CountLineBreak = 0; int Counts = 0; char ch; ch = getchar(); wh...原创 2017-03-09 20:01:58 · 697 阅读 · 1 评论 -
C Primer Plus 第六章 编程练习 9-16题
第九题#include<stdio.h>int SumOfSquare(int min , int max);int main(void){ int MaxInt; int MinInt; printf("PLease Input UpperLint Number:"); scanf("%d",&MaxInt); printf("PLease Inpu...原创 2017-03-09 20:01:55 · 727 阅读 · 0 评论 -
C Primer Plus 第六章 编程练习 1-8题
第一题#include<stdio.h>int Nu = 26;int main(void){ char letters[Nu]; char EnterChar = 'a'; char EndChar = 'z'; int counts = 0; while(EnterChar != EndChar+1) { letters[counts] = E...原创 2017-03-09 20:01:52 · 1051 阅读 · 0 评论 -
C Primer Plus 第五章 编程练习 1-8题
第一题#include<stdio.h>const int TIME = 60;int main(void){ int mins; printf("PLease Input The Time(MIN):"); scanf("%d",&mins); while(mins > 0) { printf("Now It's %d Hours An...原创 2017-03-09 20:01:49 · 877 阅读 · 0 评论 -
C Primer Plus 第三章 编程练习 2-7题
第二题#include<stdio.h>int main(void){ int ch; printf("PLease Enter An Intger:"); scanf("%d",&ch); printf("%d is %c",ch,ch); return 0;}第三题#include<stdio.h>int main(void){ ...原创 2017-03-09 20:01:44 · 1126 阅读 · 0 评论 -
C Primer Plus 第二章 编程练习 1-7题
第一题#include<stdio.h>int main(void){ printf("Anton Bruckner\n"); printf("Anton \nBruckner\n"); printf("Anton "); printf("Bruckner"); return 0;}第二题#include<stdio.h>int main(voi原创 2017-03-09 20:01:41 · 2040 阅读 · 1 评论 -
C Primer Plus 第十六章 编程练习 1-7题
第2题#include<stdio.h>#define TK(X,Y) 1/((1/X+1/Y)/2)int main(void){ int i = 10; int j = 5; printf("结果为%.2lf.",TK((double)i,(double)j)); return 0;}第3题#include<stdio.h>#include&l...原创 2017-03-09 20:02:57 · 483 阅读 · 0 评论