自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 C Primer Plus (第6版)编程练习9.11.9

新手代码,大佬勿喷,自己学习过程中的一些记录。 /* Programming Exercise 9-8 */ #include <stdio.h> double power(double a, int b); /* ANSI prototype */ double power2(double a,int b); int main(void) { double x, xpow; int n; printf("Enter a number and the integer power");

2022-05-12 21:33:16 154 1

原创 C Primer Plus (第6版)编程练习9.11.7

新手代码,大佬勿喷,自己学习过程中的一些 #include<stdio.h> #include<ctype.h> //declaration int trans_char(char ch); int main() { char ch; int n; while ((ch = getchar()) != EOF) { n = trans_char(ch); printf("%d ", n); if (ch == '\n') printf("\n");

2022-05-12 20:43:11 75

原创 C Primer Plus (第6版)编程练习8.11.8

#include<stdio.h> void show_menu(void); double input_first(void); double input_second(char ch); void output_result(char ch, double num1,double num2); int main() { double num1 = 0.0, num2 = 0.0; char ch; show_menu(); ch = getchar(); while (ch .

2022-05-09 15:03:15 180 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除