C/C++
C/C++
祝三
最潇洒的离开是永不回头的向前奔跑!
展开
-
正方形顺时针旋转
// ConsoleApplication3.27.1.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include "stdlib.h"#include "stdio.h"const int nRow = 5;const int nCol = 5;//正方形顺时针旋转templatevoid rotateArr(T arr[nRo原创 2015-03-27 16:32:09 · 666 阅读 · 0 评论 -
C++中数组长度的计算
在C++中没有像java一样提供的计算字符串的方法,所以要自己去定义数组的计算。方法如下:#include "stdafx.h"#include void arrytest();#define GET_ARR_LEN(__X__) (sizeof(__X__) / sizeof(*(__X__)))int main(){ using namespace std;原创 2015-03-24 18:41:27 · 2701 阅读 · 0 评论 -
四边形的循环
if (x>=0 && x =0 && y<=50 ){ x += 10; PUTLOG("1. x=%d, y=%d", x, y); } else if (x >= 600 && y<=600){ y += 10; PUTLOG("2. x=%d, y=%d", x, y); } else if ( y >= 600 && x>=50 ){ x -= 10;原创 2015-04-15 18:57:24 · 994 阅读 · 0 评论