- 博客(7)
- 收藏
- 关注
转载 http://alvarotrigo.com/fullPage/
http://alvarotrigo.com/fullPage/ 转载于:https://www.cnblogs.com/phppoint/p/4497215.html
2015-05-12 14:24:00 315
转载 http://www.jianshu.com/p/6d42ad6368fd
http://www.jianshu.com/p/6d42ad6368fd 转载于:https://www.cnblogs.com/phppoint/p/4497214.html
2015-05-12 14:23:00 258
转载 c++数组。输入10个数,输出这10个数中的最大值,最小值。
1 #include<iostream> 2 using namespace std; 3 4 int main() { 5 int a[10]; 6 int min=0, max=0; 7 cout << "Please enter 10 integer:" << endl; 8 ...
2015-05-12 13:37:00 8239
转载 用C++编程 输入10个数字,放在一个数组中,找出其中最小的值,输出这个值以及它在数组中的下标...
1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 int a[10],min,i,xb; 6 cout<<"Input 10 number:"; 7 for(i=0;i<10;i++) 8 cin>>a[i]; 9 min...
2015-05-12 11:58:00 4463
转载 c++ 求出从键盘上输入的10个数中的最大值
1 #include <iostream> 2 using namespace std; 3 int main() 4 { int a,max; 5 cin>>a;//先输入一个数a 6 max=a; 7 for(int i=0;i<9;i++)//再循环输入九个数 ,如果输入的数较第一次输...
2015-05-12 11:57:00 2605
转载 foreach
1.foreach 中使用引用的情况。 普通情况下,foreach($arr as $value)中的$arr和$value是拷贝,不受外部影响的,即 1 $arr = array(0,1,2,3,4,5); 2 foreach($arr as $value){ 3 $arr = array(); 4 echo $value; 5 } 结果是:123...
2015-05-11 14:14:00 69
转载 PHP number_format() 函数
定义和用法 number_format() 函数通过千位分组来格式化数字。 语法 1 number_format(number,decimals,decimalpoint,separator) 1 <?php 2 echo number_format("1000000"); 3 echo number_format("1000000",2); 4 echo...
2015-04-27 13:44:00 69
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人