自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 第6次实验

#include"stdio.h"float s[5][3];float average(float a,float b,float c){ float k; k=(a+b+c)/3; return k;}void printave(){ int i; float j; for(i=0;i<5;...

2019-06-03 23:16:00 86

转载 第五次实验

#include"stdio.h"int add(int a,int b){ int c; c=a+b; return c;}int minus(int a,int b){ int c; c=a-b; return c;}int multip(int a,int b){ int c;...

2019-06-03 22:56:00 80

转载 第四次试验

#include "stdio.h"int main(){ int a[10],m,n,p; printf("请输入10个整数:\n"); for(m=0;m<=9;m++) scanf("%d",&a[m]); for(m=0;m<=9;m++) for(n=0;n<=8-m;n++)...

2019-05-20 21:07:00 108

转载 第三次实验

for循环#include <stdio.h>int main(){ int a; long int s; s=0; for(a=22;a<=1002;a+=20) s=s+a; printf("%ld\n",s); return 0;}do-while循环...

2019-05-06 21:29:00 66

转载 第二次实验4

#include"stdio.h"main(){ double a,rate,tax,profit; scanf("%lf",&a); if(a<500) rate=0.00; else if(a<1000) rate=0.05; else if(a<200...

2019-04-23 21:28:00 73

转载 第二次实验2

#include "stdio.h"int main(){ int i; printf("input the year.\n"); scanf("%d",&i); { if((i%4==0&&i%100!=0)||i%400==0) printf("...

2019-04-23 21:27:00 119

转载 第二次实验1

#include "stdio.h"int main(){ char a,b,c,d,e; a=getchar (); b=getchar (); c=getchar (); d=getchar (); e=getchar (); putchar (a); putchar (b); pu...

2019-04-23 21:24:00 223

转载 第二次实验

#include <stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a+b<=c||a+c<=b||b+c<=a) { printf("不是三角形"); } else if(...

2019-04-23 21:18:00 67

转载 c语言作业

转载于:https://www.cnblogs.com/133-2/p/10592916.html

2019-03-25 11:54:00 74

转载 c语言作业

#include<stdio.h>intmain(){intyear;scanf("%d",&year);if((year%100!=0&&year%4==0)||year%400==0){printf("YES\n");}else{printf("NO");...

2019-03-11 21:12:00 103

空空如也

空空如也

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

TA关注的人

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