// main.m數組
// C5_二維數組dom
//ui
// Created by dllo on 15/7/6.3d
// Copyright (c) 2015年 cml. All rights reserved.字符串
//string
#import <Foundation/Foundation.h>io
int main(int argc, const char * argv[]) {for循環
// 二維數組import
// int arr[5]={1,3,5,3,4,};容器
// char stuName[20] = "zhang\0san";
// printf("%s",stuName); // %s輸出到'\0'結束
// int arr[5] = {0};
// int a = 10;
// int arr1[a]; // 當長度是變量時,不須要賦值
//
// 定義一個三行四列的二維數組
// int arr[3][4] = {1,2,3,4,5,6,7,8,9,10,11,12};
// // 第三行第二個數
// printf("%d\n",arr[2][1] );
// arr[2][1] = 20;
// printf("%-2d\n",arr[2][1]);
//
// // 遍歷一下這個二維數組
// for (int i =0; i< 3; i++) {
// for (int j = 0; j<4; j++) {
// printf("%d ",arr[i][j]);
// }printf("\n");
// }
// for (int i = 0; i<5; i++) {
// for (int j = 0; j<5; j++) {
// if (arr[j]>arr[j+1]) {
// int temp = arr[j];
// arr[j] =arr[j+1];
// arr[j+1] = temp;
//
// }
// }
// }
// 定義一個3行4列的數組
// int arr[3][4] = {0};
//
// int max = 0 ;
// int x = 0 ;
// int y = 0;
//
// // 對數組進行隨機數的賦值 範圍 30 - 70
// // 找最大值和下標
// for (int i = 0; i< 3; i++) {
// for (int j = 0; j<4; j++) {
// arr[i][j] = arc4random()% (70 -30 +1) +30;
// printf("%3d",arr[i][j]);
// // 找最大值
// if (max<arr[i][j]) {
// max = arr[i][j];
// x = i ;
// y = j ;
//
// }
// }printf("\n");
// }
//
// // 整個循環外作打印
// printf("max = %d,位置在%d,%d\n",max,x,y);
// 練習1 定義二維數組,對它進行行列的交換
// int arr[2][4] = {1,2,3,4,5,6,7,8};
// int arrNew[4][2]={0};
// for (int i = 0; i < 4; i++) {
// for (int j = 0; j<2; j++) {
// arrNew[i][j] = arr[j][i];
// }
// }
// for (int i = 0; i < 4; i++) {
// for (int j = 0; j < 2; j++) {
// printf("%d ",arrNew[i][j]);
// }printf("\n");
// }
// 用一個一維數組,打印出二維數組的樣式
// int arr[9] = {1,2,3,4,5,6,7,8,9};
// for (int i = 0; i < 9; i++) {
// if (0 == (i % 3)) {
// printf("\n");
// }
// printf("%d ",arr[i]);
// }
// printf("\n");
//
// 3 行 4 列
// int arr[12] = {0};
// 先對 arr 進行隨機數的賦值,範圍 30 -70
// for (int i = 0 ; i < 12; i++) {
// arr[i ] = arc4random()% (70 -30 +1) + 30;
// // 而後打印 3 行 4 列
// printf("%d ",arr[i]);
// if (0 == (i+1) % 4) {
// printf("\n");
// }
// }
// for (int i = 0; i < 12; i++) {
// arr[i] = arc4random()% (70 -30 +1) +30;
//
// }
// for (int i = 0; i < 3; i++) {
// for (int j = 0; j < 4; j++) {
// printf("%d ",arr[i * 4 + j]);
// }
// printf("\n");
// }
// 定義一個二維數組的時候,能夠省略行,但不能夠省略列
// 字符串數組
// 字符串的個數
// 每一個字符串的最大長度
// char strings[3][10] = {"iPhone","Android","Win8"};
// printf("%s\n",strings[0]);
// for (int i = 0; i < 3; i++) {
// for (int j = 0; j< 10; j++) {
// printf("%c",strings[i][j]);
// }printf("\n");
// }
//
// Android -> xiaomi
// char str [ 20 ] =" 111";
// char str1[20] = "222";
//
// strcpy(strings[1] ,"xiaomi");
//
//
// printf("%s\n",strings[1]);
//
// // 找字符串裏的字符
// printf("%c\n",strings[0][1]);
// // 字符串數組: 一個維度,能夠找到字符串,兩個維度找到字符串裏對應的字符
//
// int maxLen = 0;
// int max = 0;
// char strings[4][20] = {"zhaozhicheng","guohongrSHJDKLui","luochuanxi","zhangbingjian"};
// for (int i = 0; i < 4; i++) {
// if (maxLen < strlen(strings[i])) {
// maxLen = strlen(strings[i]);
// max = i;
// }
// }
// printf("最長長度是:%d\n最長的名字:%s\n",maxLen,strings[max]);
//
// 多維數組:多一個個維度至關於多一個容器,就多了一個for循環
// int arr[2][2][3] = {1,2,3,5,4,6,7,8,9,10,11,12};
// // 遍歷一下這個三維數組
// for (int i = 0; i<2; i++) {
// for (int j = 0; j<2; j++) {
// for (int k = 0; k<3; k++) {
// printf("%2d ",arr[i][j][k] );
// }printf("\n");
//
// }printf("\n");
// }
//
// int arr[6] = {8,5,6,1,7,3};
// // 1fen45
//
// for (int i =0; i<5; i++) {
// for (int j=0; j<5-i; j++) {
// if (arr[j]>arr[j+1]) {
// int temp = arr[j];
// arr[j]=arr[j+1];
// arr[j+1]=temp;
// }
// }
// }
//
// for (int i =0; i<6; i++) {
// printf("%d\n",arr[i]);
// }
return 0;
}