文章列表

筛选

pow函数的疑问点

摘要:在解答Sn=aaa+aa+a题目时候,用到了math.h的pow函数,发现:这个函数是double数据,开始用int数据进行编程,但在pow(10,n-1)当n-1为奇数时结果会小1,但改成float……

1

摘要:2……

第一个作业

摘要:在黄老师以前的视频教育下,完成了1001提……

文件应用-fwrite函数

摘要:#include<stdio.h> typedef struct Stu{     char StuNo[8];     char Name[20];     float iScore[3];……

1065

摘要:#include <stdio.h>#include <math.h>int main(){ int a[10]={0},i,j; for(i=0;i<10;i++){ scanf("%d",a……

1028

摘要:#include <stdio.h>#include <math.h>void command_zero(double a,double b,double c);void command_upzero……

1268:P1001

摘要:#include<stdio.h>int main(){    int n,k,i=0,a[10000]={0};    scanf("%d%d", &n,&k);    while(i<n){   ……

c primer plus 第十二章 12.1小节

摘要:1. 对象的定义:                            在程序中,数据在内存存储。从硬件方面看,被存储的每个值都占有一定空间(类型所占字节数),该内存空间称之为对象,对象可以存储一个……

1157题解

摘要:#include<stdio.h>int Sum_divisor(int num)    //求取所有真公约数之和{ int i,sum = 0; for(i = 1;i<num;i++) { if……