- 博客(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
296
原创 C Primer Plus (第6版)编程练习9.11.7
新手代码,大佬勿喷,自己学习过程中的一些#include<stdio.h>#include<ctype.h>//declarationint 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
147
原创 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
264
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅