php陣列面試題$arr1=array(1,2,3,4,5); $arr2=array('a','b','c','d','e');輸出要交叉輸出
<?php
$arr1=array(1,2,3,4,5);
$arr2=array('a','b','c','d','e');for($i=0;$i<count($arr1);$i++)
{
echo $arr1[$i].$arr2[$i];
}
/*
$arr1=array(1,2,3,4,5);
$arr2=array('a','b','c','d','e');
$j=0;
$m=0;
for($i=1;$i<=(count($arr1)+count($arr2));$i++)
{
if($i%2!=0){
echo $arr1[$j];
$j++;
}
else
{
echo $arr2[$m];
$m++;
}
}
*/
/*
$arr1=array(1,2,3,4,5);
$arr2=array('a','b','c','d','e');
foreach($arr1 as $k=>$v)
{
echo$v;
foreach($arr2 as $k2=>$v2)
{
if($k==$k2)
{
echo $v2;
}
}
}
*/
相關推薦
php陣列面試題$arr1=array(1,2,3,4,5); $arr2=array('a','b','c','d','e');輸出要交叉輸出
<?php $arr1=array(1,2,3,4,5); $arr2=array('a','b','c','d','e'); for($i=0;$i<count($arr1);$i++) {echo $arr1[$i].$arr2[$i]; } /* $arr
給定一個n個整數的陣列S,是否存在S中的4個數,使得a + b + c + d = target。 在陣列中找出所有唯一的四元組,給出目標的總和。
本題源自LeetCode ------------------------------------------ 思路1 :回溯法 超時 程式碼; vector<vector<int> > fourSum(vector<int> &
【Java】給定一個字串str,和一個字母ch,請實現相應的程式碼求出一個數組,使陣列中每個數字表示該位置與字母ch之間的最短距離。 比如str=”lexinfintech” ch=”i” 則輸出為:[3,2,1,0,1,1,0,1,2,3,4,5]
import java.util.ArrayList; import java.util.List; import java.util.Scanner; /** * @author: ycz * @date: 2018/12/17 0017 16:43 * @description: */ p
js每隔一秒列印1,2,3,4,5
js怎麼每隔一秒打印出數字呢? 方法一: 自執行函式 for (var i=0; i<5; i++) { (function (i) { setTimeout(() => console.log(i), 1000*
linux init 0 1 2 3 4 5
# 0 - 停機(千萬不能把initdefault 設定為0 ) # 1 - 單使用者模式 # 2 - 多使用者,沒有 NFS # 3 - 完全多使用者模式(標準的執行級) # 4 - 沒有用到 # 5 - X11 (xwindow) # 6 - 重新啟動 (千萬不要把in
Codeforces Round #516 (Div. 2, by Moscow Team Olympiad)(A,B,C,D)
A. 水題,不多說。 /**/ #include <cstdio> #include <cstring> #include <cmath> #include <cctype> #include <iostream> #include
Educational Codeforces Round 54 (Rated for Div. 2) A B C D E題解
這些題目挺有意思,起碼我都錯過,可能這兩天精力有點不足,腦子不太夠用??? A題連結:http://codeforces.com/contest/1076/problem/A 題意:給定一個字串,最多可以刪掉一個字元,使得字典序最小; 思路:首先跟原串比較的話,某一
【 Educational Codeforces Round 55 (Rated for Div. 2)】 A.B.C.D.E.
前言 biubiubiu_ r a t i
Codeforces Round #424 Div.2 A B C D E F
Vasily has a deck of cards consisting of n cards. There is an integer on each of the cards, this integer is between 1 and 100 000, inclusive. It is poss
山科java實驗3-3編寫一個方法,返回一個double型的二維陣列,陣列中的元素通過解析字串引數獲得。例如,字串引數:“1,2;3,4,5;6,7,8”,對應的陣列為: d[0,0
編寫一個方法,返回一個double型的二維陣列,陣列中的元素通過解析字串引數獲得。例如,字串引數:“1,2;3,4,5;6,7,8”,對應的陣列為: d[0,0] = 1.0 d[0,1
一個關於執行緒的經典面試題,要求用三個執行緒,按順序列印1,2,3,4,5.... 71,72,73,74, 75. 執行緒1先列印1,2,3,4,5, * 然後是執行緒2列印6,7,8,9,10, 然後是
package thread; /** * * 一個關於執行緒的經典面試題,要求用三個執行緒,按順序列印1,2,3,4,5.... 71,72,73,74, 75. 執行緒1先列印1,2,3,4,5, * 然後是執行緒2列印6,7,8,9,10, 然後是執行緒3列印
將一個整形陣列逆序,如陣列a[5]={1,2,3,4,5},逆序之和陣列a變成了{5,4,3,2,1};
方法一: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include&
在Sql中將 varchar 值 '1,2,3,4,5,6' 轉換成數據類型 int
給定 序列 顯示 結果 空格 sel -方法 一個表 affect --問題:將aa轉換為Int類型失敗 string aa="3,5,11,56,88,45,23"; select * from ERPBuMen where ID in(aa) ; --方法sel
求 1-2+3-4+5-6+7-8....M 的結果算法
次數 pre blog spa rgs static console line span 1 static void Main(string[] args) 2 { 3 /** 4 * 算法題: 5 * 求 1-2+3-4+5-6+7
C語言代碼編程題匯總:顯示表達式1*2+3*4+...+99*100的表示形式(采取交互的形式)
stdio.h tdi input 字符型 6.0 tro vc++6.0 text class 顯示表達式1*2+3*4+...+99*100的表示形式(采取交互的形式) 程序源代碼如下: 1 /* 2 2017年6月8日08:03:38 3 功能
C語言代碼編程題匯總:顯示表達式1*2+3*4+...+9*10的表示形式
clas ron urn ++ class align int c語言代碼 程序 顯示表達式1*2+3*4+...+9*10的表示形式 源程序代碼如下: 1 /* 2 2017年6月7日22:54:51 3 功能:實現1*2+3*4+...+9*10
練習:求1+2+3+4+5...100的和
hid 技術 one brush src log display 分享 code 求1+2+3+4+5...100的和方法一 count = 1 s1 = 0 while count <= 100:
寫一個函數計算但參數為n(n很大)時的值1-2+3-4+5-6+7……+n。(考慮程序執行效率)
參數 color n) col sys class n-1 == code 1 private static void jisuan(int n) { 2 int sum=0; 3 if(n%2==0){ 4 sum=-(n/2)
94、tensorflow實現語音識別0,1,2,3,4,5,6,7,8,9
結果 test amp building pre cti fun ner edi ‘‘‘ Created on 2017年7月23日 @author: weizhen ‘‘‘ #導入庫 from __future__ import division,print_func
python入門:求1-2+3-4+5...99的所有數的和(自寫)
== 余數 奇數 nbsp int 當前 pre span bre 1 #!/usr/bin/env pyhton 2 # -*- coding:utf-8 -*- 3 #求1-2+3-4+5...99的所有數的和(自寫) 4 """ 5 給x賦值為0,給y賦值