笔记
松茸汽水
周六周日上课考试
展开
-
C++如何开N次方
C++如何开n次方#include <iostream>#include <cmath>using namespace std;typedef long long LL;int main() { LL a = 625; LL s = pow(a,1.0/4); cout<<"pow开方:"<<s<<endl; return 0;}原创 2021-03-18 18:58:15 · 3189 阅读 · 1 评论 -
c语言学习笔记:指针与函数
1.函数的地址函数名称为函数的入口地址;定义指向函数的指针变量:int (*p)();通过指针变量访问函数的方式:(*p)(a,b);//2.举例分析#include<stdio.h>int max(int ,int );void main(){// int (*p)() ; int (*p)(int, int); p=max; printf("max=%d\n",(*p)(3,4));} int max(int a,int b){ if(a>原创 2020-12-14 16:40:35 · 235 阅读 · 0 评论 -
c语言小程序 祝你生日快乐!
#include <stdio.h>#include <math.h>#include <stdlib.h>#define I 20#define R 340int main(){system("mode con cols=80 lines=60 ");system("title 向你致以最诚挚的祝福!");char data[200][60]={{"祝你生日快乐!祝你生日快乐 !"},{"\nHappy birthday to you!\n"},{"H原创 2020-12-13 16:03:09 · 22365 阅读 · 20 评论 -
山东科技大学电信学院电科专业2020—2021c语言期末考试(出题人宋戈老师)
Problem A:平均值Description求3个数的平均值。Input输入只有一行,为3个较小的整数。Output输出为这3个整数的平均值,保留3位小数。Sample Input1 2 3Sample Output2.000HINT注意除法运算对整型数据和浮点型数据是不一样的。Append Code#include <stdio.h>#include <stdlib.h>int main(){ double a,b,c; sca原创 2020-12-12 16:17:50 · 929 阅读 · 0 评论 -
Problem A: 编写函数:求数组中的最大值 (Append Code)
标题原创 2020-12-11 22:12:51 · 881 阅读 · 0 评论