第一次写博客

时间:2021-06-17 17:24:21

 好久以前就有人建议我写博客,而且我也想写写博客,可是因为各种忙,各种活动,所以一直都没有落实。到了今天我觉得不能再托下去了所以决定写写博客,顺便记录一下我的成长历程。

  老规矩还是以一个Hello World 为开始吧!

#include "stdafx.h"
#include <iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    cout<<"Hello World!!"<<endl;
    return 0;
}


经典的例子,膜拜一下!!!

恩恩,接下来些写个冒泡排序吧

#include "stdafx.h"
#include <iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
    void arry_up(int *num,const int BOUNDS);
    int num[10];
    const int BOUNDS = 10;
    cout<<"Please enter ten numbers!:"<<endl;
    for(int i = 0;i < BOUNDS;i++)
        cin>>num[i];
    arry_up(num,BOUNDS);
    for(int i = 0;i < BOUNDS;i++)
        cout<<num[i]<<"  ";
    cout<<endl;
    return 0;
}

void arry_up(int *num,const int BOUNDS)
{
    for(int i = 0;i < BOUNDS-1;i++)
        for(int j = 0;j < BOUNDS-1-i;j++)
            if(num[j]>num[j+1])
            {
                int temp = num[j+1];
                num[j+1] = num[j];
                num[j] = temp;
            }
}



这都是些简单的例子就偷偷懒不加注释了第一次写博客

  再来个蛇形矩阵

#include "stdafx.h"
#include<iostream>
#include<iomanip>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
    int n1,n2,j,k,i;
    int a[10][10];
    for(n1=0;n1<10;n1++)
    {
        j=1;k=2+n1;
        a[n1][0]=(((n1+1)*(n1+1)-(n1+1))/2)+1;
        for(n2=0;n2<9-n1;n2++,j++)
        {    
            a[n1][j]=a[n1][j-1]+k;
            k=k+1;
        }
    }
    for(i=0;i<10;i++)
    {
        for(j=0;j<10-i;j++)
            cout<<setw(3)<<a[i][j]<<" ";
        cout<<endl;
    }
    cout<<endl;
    return 0;
}


写个闰年判断程序纪念纪念

#include "stdafx.h"
#include<stdio.h>
int main()
{
    int year;
    scanf("%d",&year);
    (year%4==0&&year%100!=0)||year%400==0?printf("闰年"):printf("非闰年");

    return 0;
}


这些程序代码都是我在刚入学时敲得(当然我不可能就敲这么点,只是觉得比较经典就发上来了大家别喷……哈哈),当时敲得代码能成功运行别提有多激动了第一次写博客