自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 图形 --函数调用

#include <stdio.h>#include <stdlib.h>#include<math.h>void rectangle(){    float wide,high,c,s;    scanf("%f%f",&wide,&high);    c=2*(wide+high);    s=wide*high;    printf("宽为...

2018-07-07 16:59:36 277

原创 简单的加密解密

#include <stdio.h>#include <stdlib.h>#define KEY 11  //偏移量int encrypt(char password[])//加密{    int i=0;    int count = strlen(password);    for(;i<count;i++)    {        password[i]=pas...

2018-05-23 20:13:35 733

转载 输入一年中的某天在这一年中是第几天

#include <stdio.h>int Fact(int year,int month,int day){    int sum=0;    int a[2][12]={{0,31,59,90,120,151,181,212,243,273,304,334},                  {0,31,60,91,121,152,182,213,244,274,305,335}...

2018-05-23 19:38:28 247

原创 宏定义——冒泡排序

#include <stdio.h>#include <stdlib.h>#define N 5int main(){    int i,j,t;    int a[N];    printf("请输入五个数字:");    for(i=0;i<N;i++)    {        scanf("%d",&a[i]);    }    for(i=0;i&lt...

2018-04-18 22:48:38 334 1

空空如也

空空如也

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

TA关注的人

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