2019年5月23日

C语言--实验六

摘要: #include <stdio.h> #include <string.h> #include <windows.h>#include <stdlib.h> int average(int a,int b,int c) { int av; av=(a+b+c)/3; return av; } int 阅读全文

posted @ 2019-05-23 15:53 p201821430005 阅读(141) 评论(2) 推荐(0) 编辑

C语言--实验五

摘要: 内容一 #include <stdio.h> int add(int a,int b){ return a+b; } int minus(int a,int b){ return a-b; } int multip(int a,int b){ return a*b; } int quotient(i 阅读全文

posted @ 2019-05-23 14:44 p201821430005 阅读(76) 评论(0) 推荐(0) 编辑

导航