啊哈!C语言课后参考答案上
最近看到一本好评量很高的的C语言入门书,课本真的很好,入门的话。专业性没有那么强,但入门足够了!!好评!看着看着就想把这本书的题课后习题都写出来,最后就有了这个小结。可能有的不是最好,不那么专业,但主要是以初学者的思维角度去写。尽量让初学者通俗易懂。
链接:https://pan.baidu.com/s/1nArPBm8nxCrj8awWQBglSw
提取码:zlm8
链接:https://pan.baidu.com/s/1Yp4jGIwaput8WmrTyHKgMA
提取码:u85y
从第二章开始
第二章
//2.2节
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("hi");
system("pause");
return 0;
}
//2题显示如下图形
*
**
***
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("*\n");
printf("**\n");
printf("***\n");
system("pause");
return 0;
}
*
* *
* *
* *
*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf(" *\n");
printf(" * *\n");
printf("* *\n");
printf(" * *\n");
printf(" *\n");
system("pause");
return 0;
}
*
*
*
* *
**
*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf(" *\n");
printf(" *\n");
printf(" *\n");
printf("* *\n");
printf(" **\n");
printf(" *\n");
system("pause");
return 0;
}
//显示如下图形
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("A\n");
printf("BC\n");
printf("DEF\n");
printf("GHIJ\n");
printf("KLMNO\n");
printf("PRSTUV\n");
printf("W\n");
printf("X\n");
printf("Y\n");
printf("Z\n");
system("pause");
return 0;
}
//打印一个小飞机(绿底白字)
#include <stdio.h>
#include <stdlib.h>
int main()
{
system("color 2f");
printf(" *\n");
printf(" **\n");
printf("* ***\n");
printf("** ****\n");
printf("***************\n");
printf("** ****\n");
printf("* ***\n");
printf(" **\n");
printf(" *\n");
system("pause");
return 0;
}
//打印一个小红旗(白底红字)
#include <stdio.h>
#include <stdlib.h>
int main()
{
system("color f4");
printf("A\n");
printf("I*\n");
printf("I**\n");
printf("I***\n");
printf("I****\n");
printf("I*****\n");
printf("I\n");
printf("I\n");
printf("I\n");
printf("I\n");
system("pause");
return 0;
}
//第四节
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c;
a=5;
b=3;
c=1;
printf("%d\n",a+b+c);
system("pause");
return 0;
}
//计算三个算式
//123456789+43214321
//7078*8712
//321*(123456+54321)
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
a=123456789;
b=43214321;
printf("%d\n",a+b);
int c,d;
c=7078;
d=8712;
printf("%d\n",c*d);
int e,f;
e=321;
f=123456+54321;
printf("%d\n",e*f);
system("pause");
return 0;
}
//第五节
#include <stdio.h>
#include <stdlib.h>
int main()
{
float a,b,c;
a=5.2;
b=3.1;
c=a+b;
printf("%f\n",c);
system("pause");
return 0;
}
//计算下面三个式子
//1.2+2.3+3.4+4.5
//1.1*100
//10.1*(10*10)
#include <stdio.h>
#include <stdlib.h>
int main()
{
float a,b,c;
a=1.2+2.3;
b=3.4+4.5;
c=a+b;
printf("%f\n",c);
float d,e,f;
d=1.1*100;
printf("%f\n",d);
e=10.1;
f=10*10;
printf("%f\n",e*f);
system("pause");
return 0;
}
//指定两个数,输出这两个数的和、差、积、商,例如,这两个数是9和3,输出他们的和、差、商、积
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a=9,b=3;
printf("%d\n",a+b);
printf("%d\n",a-b);
printf("%d\n",a*b);
printf("%d\n",a/b);
system("pause");
return 0;
}
第三章
//第二节
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
if(a<=100){
printf("yes");
}
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
if(a>0){
printf("yes\n");
}
if(a<0){
printf("no\n");
}
if(a==0){
printf("0\n");
}
system("pause");
return 0;
}
//第三节
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
if(a%7==0){
printf("yes");
}
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
if(a%10==0){
printf("yes");
}
if(a%10!=0){
printf("no");
}
system("pause");
return 0;
}
//第四节
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
if(a%10==7){
printf("yes");
}else{
printf("no");
}
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
if(a>=1&&a<=9){
printf("yes");
}else{
printf("no");
}
system("pause");
return 0;
}
//第五节
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
if(a==b){
printf("yes");
}else{
printf("no");
}
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
if(a%b==0){
printf("yes");
}else{
printf("no");
}
system("pause");
return 0;
}
//第六节
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d",&a);
if(a%7==0||a%10==7){
printf("yes");
}else{
printf("no");
}
system("pause");
return 0;
}
//1、从键盘任意读入3个整数,如何从中找出最小的一个?
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c,d;
scanf("%d %d %d",&a,&b,&c);
if(a>b){
d=b;
}else{
d=a;
}
if(d>c){
d=c;
}
printf("%d",d);
system("pause");
return 0;
}
//2、从键盘任意读入4个整数,如何从中找出最大的一个?
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b, c, d, e;
scanf("%d %d %d %d", &a, &b, &c, &d);
if(a > b) {
e = a;
}else{
e = b;
}
if(e < c) {
e = c;
}
if(e < d) {
e = d;
}
printf("%d", e);
system("pause");
return 0;
}
//3、从键盘输入一个年份(整数),判断这个年份是否为闰年,是 则输出yes,不是则输出no。
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d", &a);
if((a%4 == 0 && a%100 != 0) || a%400 == 0){
printf("yes");
}else{
printf("no");
}
system("pause");
return 0;
}
//第七节
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
scanf("%d", &a) ;
if (a%2==1){
printf("%d ", a+1) ;
printf("%d ", a+2) ;
printf("%d ", a+3) ;
}else{
printf("%d ", a-1) ;
printf("%d ", a-2) ;
printf("%d ", a-3) ;
}
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main() {
int a, b, c, d, t;
scanf("%d %d %d %d", &a, &b, &c, &d);
if(a > b) {
t = a;
a = b;
b = t;
}
if(a > c) {
t = a;
a = c;
c = t;
}
if(a > d) {
t = a;
a = d;
d = t;
}
if(b > c) {
t = b;
b = c;
c = t;
}
if(b > d) {
t = b;
b = d;
d = t;
}
if(c > d) {
t = c;
c = d;
d = t;
}
printf("%d %d %d %d", a, b, c, d);
system("pause");
return 0;
}
第四章
//第一节
//一起来找茬
while(1>0)
printf("hello");
//更进一步,动手试一试
while(1>0)
printf("你好");
//第 2 节
//一起来找茬
int a;
a=100;
while(a<=200){
printf("%d ",a);
a=a+1;
}
//更进一步,动手试一试
int a,b;
a=1;
while(a<=100){
printf("%d ",a);
a=a+1;
}
b=99;
while(b>=1){
printf("%d ",b);
b=b-1;
}
//第四节
//一起来找茬
int a,i;
a=1;
i=1;
while(i<=10)
{
a=a*i;
i=i+1;
}
printf("%d",a);
//更进一步,动手试一试
//1. 求1~100所有偶数的和。
int a,i;
a=0;
i=1;
while(i<=100){
if(i%2==0){
a=a+i;
}
i=i+1;
}
printf("%d",a);
//2. 输入一个整数n(1<=n<=9),求n的阶乘 [1] 。
int n,a,i;
scanf("%d",&n);
a=1;
i=1;
while(i<=n){
a=a*i;
i=i+1;
}
printf("%d",a);
//第五节
//更进一步,动手试一试
#include <stdio.h>
#include <stdlib.h>
#include<windows.h>
int main() {
int a, i, j;
a = 120;
while(a >= 0) {
system("cls");
i = a/60;
j = a%60;
if(j/10 == 0) {
printf("%d:0%d", i, j);
}
else
{
printf("%d:%d", i, j);
}
Sleep(1000);
a = a-1;
}
system("pause");
return 0;
}
//第六节
//更进一步,动手试一试
/*1.输入一个整数n(1<=n<=30),当输入的n值为3时,打印结果是:
1
2 2
3 3 3
当输入的n值为6时,打印结果是:
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
6 6 6 6 6 6*/
#include <stdio.h>
#include <stdlib.h>
int main() {
int n, i, j;
scanf("%d", &n);
i = 1;
while(i <= n) {
j = 1;
while(j <= i) {
printf("%d ", i);
j = j+1;
}
printf("\n");
i = i+1;
}
system("pause");
return 0;
}
/*2.输入一个整数n(1<=n<=30),当输入的n值为3时,打印结果是:
1
2 3
4 5 6
当输入的n值为5时,打印结果是:
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15*/
#include <stdio.h>
#include <stdlib.h>
int main() {
int n, i, j, k;
scanf("%d", &n);
k = 1;
i = 1;
while(i <= n) {
j = 1;
while(j <= i) {
printf("%d ", k);
k = k+1;
j = j+1;
}
printf("\n");
i = i+1;
}
system("pause");
return 0;
}
//第八节
/*更进一步,动手试一试
55 个“OK ”
1+2+3+4+5+6+7+8+9+10=55
*/
//第九节
//类似于:从 1 打印到 100 和从 100 打印到 1。
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int main() {
int a, b;
a = 10;
while(a >= 0) {
system("cls");
b = 1;
while(b <= a) {
printf(" ");
b = b+1;
}
printf(" O\n");
b = 1;
while(b <= a) {
printf(" ");
b = b+1;
}
printf("<H>\n");
b = 1;
while(b <= a) {
printf(" ");
b = b+1;
}
printf("I I\n");
Sleep(1000);
a = a-1;
}
system("pause");
return 0;
}
//第十节
//一起来找茬
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, sum;
sum = 1;
for(i = 1; i <= 10; i++) {
sum = sum*i;
}
printf("%d", sum);
system("pause");
return 0;
}
//更进一步,动手试一试
/*1、请尝试用for循环打印下面的图形。
*
***
*****
*******
*********
*******
*****
***
*
*/
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, j, k, t;
for(i = 1; i <= 5; i++) {
for(j = 4; j >= i; j--) {
printf(" ");
}
for(k = 1; k <= 2*i-1; k++) {
printf("*");
}
printf("\n");
}
t = 7;
for(i = 1; i <= 4; i++) {
for(j = 1; j <= i; j++) {
printf(" ");
}
for(k = 1; k <= t; k++) {
printf("*");
}
t = t-2;
printf("\n");
}
system("pause");
return 0;
}
/*2、请尝试用for循环来打印一个九九乘法表*/
#include <stdio.h>
#include <stdlib.h>
int main() {
int i, j;
for(i = 1; i <= 9; i++) {
for(j = 1; j <= i; j++) {
printf("%d*%d=%d ", i, j, i*j);
}
printf("\n");
}
system("pause");
return 0;
}
啊哈!C语言课后参考答案上的更多相关文章
- 啊哈!C语言课后参考答案下
最近看到一本好评量很高的的C语言入门书,课本真的很好,入门的话.专业性没有那么强,但入门足够了!!好评!看着看着就想把这本书的题课后习题都写出来,最后就有了这个小结.可能有的不是最好,不那么专业,但主 ...
- 全国计算机等级考试二级教程2019年版——Python语言程序设计参考答案
第二章 Python语言基本语法元素 一.选择题C B B C A D B A D B二.编程题1.获得用户输入的一个整数N,计算并输出N的32次方.在这里插入图片描述2.获得用户输入的一段文字,将这 ...
- 【转载】经典10道c/c++语言经典笔试题(含全部所有参考答案)
经典10道c/c++语言经典笔试题(含全部所有参考答案) 1. 下面这段代码的输出是多少(在32位机上). char *p; char *q[20]; char *m[20][20]; int (*n ...
- 史上最全Java面试题整理(附参考答案)
下列面试题都是在网上收集的,本人抱着学习的态度找了下参考答案,有不足的地方还请指正,更多精彩内容可以关注我的微信公众号:Java团长 1.面向对象的特征有哪些方面? 抽象:将同类对象的共同特征提取出来 ...
- web实验指导书和课后习题参考答案
实验指导书 :http://course.baidu.com/view/daf55bd026fff705cc170add.html 课后习题参考答案:http://wenku.baidu.com/li ...
- C++ Primer 第 5 版 习题参考答案
从 5 月初 - 8 月 16 日,每天基本都在啃 C++ 的语法.起初直接看C++ Primer 中文版(第 5 版),发现后边的章节看着很吃力.所以就转而看了清华大学郑莉老师和李超老师的视频C++ ...
- 《招聘一个靠谱的iOS》面试题参考答案(下)
相关文章: <招聘一个靠谱的iOS>面试题参考答案(上) 说明:面试题来源是微博@我就叫Sunny怎么了的这篇博文:<招聘一个靠谱的 iOS>,其中共55题,除第一题为纠错题外 ...
- 非常全的linux面试笔试题及参考答案
一.填空题: 1. 在Linux系统中,以 文件 方式访问设备 . 2. Linux内核引导时,从文件/etc/fstab 中读取要加载的文件系统. 3. Linux文件系统中每个文件用 i节点来标识 ...
- Linux经典100题及参考答案
转至:https://blog.csdn.net/yaoqiang2011/article/details/11908189 一.单选题 1. cron 后台常驻程序 (daemon) 用于: A. ...
随机推荐
- Python基础:24with语句
一:with语句 在Python 2.6 中正式引入的with语句,是用来简化代码的.这与用try-except 和try-finally所想达到的目的前后呼应.try-except 和try-fin ...
- [翻译]Python中yield的解释
问题: Python中yield关键字的作用是什么?它做了什么? 例如,我想理解以下代码 def node._get_child_candidates(self, distance, min_dist ...
- poj 1716 Integer Intervals(差分约束)
1716 -- Integer Intervals 跟之前个人赛的一道二分加差分约束差不多,也是求满足条件的最小值. 题意是,给出若干区间,需要找出最少的元素个数,使得每个区间至少包含两个这里的元素. ...
- 权值线段树+动态开点[NOI2004]郁闷的出纳员
#include<iostream> #include<stdio.h> #include<algorithm> #include<string.h> ...
- poj 3675 Telescope (圆与多边形面积交)
3675 -- Telescope 再来一题.这题的代码还是继续完全不看模板重写的. 题意不解释了,反正就是一个单纯的圆与多边形的交面积. 这题的精度有点搞笑.我用比较高的精度来统计面积,居然wa了. ...
- codeforces 1214
D 比赛的时候居然看漏了条件... 若在(x, y)格子,那么只能移动到(x+1, y)或(x, y+1) 这样的话就好做了,直接dp,然后统计每一种路径长度经过的点数. #include<cs ...
- [转]来自后端的逆袭 blazor简介 全栈的福音
背景 什么是SPA 什么是MPA MPA (Multi-page Application) 多页面应用指的就是最传统的 HTML 网页设计,早期的网站都是这样的设计,所之称为「网页设计」.使用 MPA ...
- Navicat for MySQL 使用SSH方式链接远程数据库
第一步:ssh部分: 端口号:22 用户名为:在xshell中用来登录服务器的账号密码 第二步: 端口:3306 账号密码:在MySQL中的登录账号密码
- Scrap简介
原文:https://blog.csdn.net/ssw_1990/article/details/51254227 提到Python与网络爬虫,可能会想到urllib,urllib2,Beautif ...
- H3C IP路由表摘要信息