herrDeng網內搜尋
自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
教育部為提昇全民資安素養與電腦防護能力,本部於101年9月5日至11月5日舉辦「全民資安素養自我評量」活動,請在活動期間內踴躍上網檢測資訊安全素養認知程度,並有機會參與抽獎,詳情請參閱活動網站(網址: https://isafe.moe.edu.tw/event
-
先說明一下這是後知後覺的解答,所謂後知就是股票價格已知存在陣列(清單),當然就要用迴圈練習,雙迴圈暴力解需時O(n**2),當然不用,採python單一迴圈解答「最佳股票的買賣時機#LeetCode 121 Best Time to Buy and Sell Stock」,解...
-
url="https://www.twse.com.tw/exchangeReport/STOCK_DAY?response=json&date=20220330&stockNo=2330"
-
你會用C的算子sizeof?
-
Python CPP heap priority queue速解L eetcode 2530. Maximal Score After Applying K Operations heap/priority queue是重要的資料結構,無論是C++的std::priority_q...
-
C++ DP動態規劃解Leetcode 937 Maximum Number of Points with Cost 有些標示medium要比標示hard的問題還要難,Leetcode 1937. Maximum Number of Points with Cost,DP動態規...
49 則留言:
3.
data,&data[0],&dadt[LEN-1]
4.
(1) a.status,ptrstatus
(2) a.age=20,ptrage=20
(3) strcpy(a.name,”陳會安”);,strcpy(ptrname”陳會安”);
5.
(1) 0
(2) 1
(3) 4
(4) 3
(5) 2
6.
字元陣列,’\0’
3.
ptr=&data[1];
ptr=data+1;
ptr=&data[LEN-1];
4.
(1)a.status;ptr->status
(2)a.age=20;ptr->age=20
(3)strCpy(a.name,"陳會安");strCpy(ptr->name,"陳會安")
5.
0,1,4,3,2
6.
字元陣列,'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0]
[1]
[4]
[3]
[2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
(1)a.status
ptr->status
(2)a.age=20
ptr->age=20
(3)a.name="陳會安"
ptr->name="陳會安"
5.
(1) [0]
(2) [1]
(3) [4]
(4) [3]
(5) [2]
6. '\0'
3.
(1)
ptr+1
&data[1]
(2)
ptr+(LEN-1)
4.
(1)
struct person a;
struct person *ptr=&a;
(2)
a.age=20;
(*ptr).age=20;
ptr->age=20;
(3)
strcpy((*ptr).name,"陳會安");
strcpy(ptr->name,"陳會安");
5.
(1)
array[0]
(2)
array[0]
(3)
array[3]
(4)
array[2]
(5)
array[2]
6.
(1)
字串就是字元陣列
(2)
'\0'
3. Ptr+1
&data[1]
Ptr+(LEN-1) &data[LEN-1]
4. (1) struct person a;
struct person *ptr=&a;
(2) a.age=20;
(*ptr).age=20;
Ptr->age=20;
(3) strcpy(a.name,” 陳會安”);
Strcpy((*ptr) .name, ” 陳會安”);
Strcpy(ptr ->name, ” 陳會安”);
5. (1) 0
(2) 1
(3) 3
(4) 2
(5) 最後一個
6.(1) 字串就是字元陣列
(2) line[i]=’\0’
3.
(1)Ptr+1 (2)&data[1]
(3)Ptr+(LEN-1) OR &data[LEN-1]
4.(1) struct person a;
struct person *ptr=&a;
(2) a.age=20;
(*ptr).age=20;
Ptr->age=20;
(3) strcpy(a.name,” 陳會安”);
Strcpy((*ptr) .name, ” 陳會安”);
Strcpy(ptr ->name, ” 陳會安”);
5. (1) 0
(2) 1
(3) 3
(4) 2
(5) 最後一個
6.(1) 字串就是字元陣列
(2) ’\0’
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
第三題
1.
ptr+1
&data[1]
2.
ptr=&data[LEN-1]
第四題
1.
struct person a;
struct person *ptr=&a;
2.
a.age=20;
(*ptr).age=20;
ptr->age=20;
3.
strcpy((*ptr).name,"陳會安");
strcry(ptr->name,"陳會安");
第五題
1.[0]
2.[1]
3.[4]
4.[0]
5.[5]
第六題
1.
字元陣列,'\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
a.status ptr->status
a.age=20 ptr->age=20
strcpy(a.name,"陳會安")
strcpy(ptr->name,"陳會安")
5.
01432
6.字元陣列 '\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
a.status ptr->status
a.age=20 ptr->age=20
strcpy(a.name,"陳會安")
strcpy(ptr->name,"陳會安")
5.
01432
6.字元陣列 '\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
a.status ptr->status
a.age=20 ptr->age=20
strcpy(a.name,"陳會安")
strcpy(ptr->name,"陳會安")
5.
01432
6.字元陣列 '\0'
第三題
1.
ptr+1
&data[1]
2.
ptr=&data[LEN-1]
第四題
1.
struct person a;
struct person *ptr=&a;
2.
a.age=20;
(*ptr).age=20;
ptr->age=20;
3.
strcpy((*ptr).name,"陳會安");
strcry(ptr->name,"陳會安");
第五題
1.[0]
2.[1]
3.[4]
4.[3]
5.[2]
第六題
1.
字元陣列,'\0'
第三題
1.
ptr+1
&data[1]
2.
ptr=&data[LEN-1]
第四題
1.
struct person a;
struct person *ptr=&a;
2.
a.age=20;
(*ptr).age=20;
ptr->age=20;
3.
strcpy((*ptr).name,"陳會安");
strcry(ptr->name,"陳會安");
第五題
1.[0]
2.[1]
3.[4]
4.[3]
5.[2]
第六題
1.
字元陣列,'\0'
3.
(1)
ptr=data
ptr=&data[0]
(2)
ptr=&data[LEN-1]
4.
(1)
a.status
(*ptr).status
(2)
a.age=20;
(*ptr).age=20;
ptr->age=20;
(3)
strcpy((*ptr).name,"陳會安");
strcry(ptr->name,"陳會安");
5.
(1)[0]
(2)[1]
(3)[4]
(4)[3]
(5)[2]
6.
字元陣列,'\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
a.status ptr->status
a.age=20 ptr->age=20
strcpy(a.name,"陳會安")
strcpy(ptr->name,"陳會安")
5.
01432
6.字元陣列 '\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
a.status ptr->status
a.age=20 ptr->age=20
strcpy(a.name,"陳會安")
strcpy(ptr->name,"陳會安")
5.
01432
6.字元陣列 '\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
a.status ptr->status
a.age=20 ptr->age=20
strcpy(a.name,"陳會安")
strcpy(ptr->name,"陳會安")
5.
01432
6.字元陣列 '\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
a.status ptr->status
a.age=20 ptr->age=20
strcpy(a.name,"陳會安")
strcpy(ptr->name,"陳會安")
5.
01432
6.字元陣列 '\0'
3.
ptr=&data[1]
ptr=data+1
ptr=&data[LEN-1]
4.
a.status ptr->status
a.age=20 ptr->age=20
strcpy(a.name,"陳會安")
strcpy(ptr->name,"陳會安")
5.
01432
6.字元陣列 '\0'
3.<BR>(1)[1]或[ptr+1](2)[Len-1]<BR>5.<BR>(1)ptr=array; 索引值0<BR>(2)ptr++; 索引值1<BR>(3)ptr+3; 索引值4<BR>(4)ptr=ptr+2; 索引值3<BR>(5)ptr--; 索引值1<BR>6.<BR>C語言的字串是一種字元陣列。<BR>結束字元 '\()';
3.<BR>(1)[1]或[ptr+1](2)[Len-1]<BR>5.<BR>(1)ptr=array; 索引值0<BR>(2)ptr++; 索引值1<BR>(3)ptr+3; 索引值4<BR>(4)ptr=ptr+2; 索引值3<BR>(5)ptr--; 索引值1<BR>6.<BR>C語言的字串是一種字元陣列。<BR>結束字元 '\()';
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.'\0'
3. Ptr+1
&data[1]
Ptr+(LEN-1) &data[LEN-1]
4. (1) struct person a;
struct person *ptr=&a;
(2) a.age=20;
(*ptr).age=20;
Ptr->age=20;
(3) strcpy(a.name,” 陳會安”);
Strcpy((*ptr) .name, ” 陳會安”);
Strcpy(ptr ->name, ” 陳會安”);
5. (1) 0
(2) 1
(3) 3
(4) 2
(5) 最後一個
6.(1) 字串就是字元陣列
(2) line[i]=’\0’
志嚴答案
3.
(1)
ptr+1
&data[1]
(2)
ptr+(LEN-1)
4.
(1)
struct person a;
struct person *ptr=&a;
(2)
a.age=20;
(*ptr).age=20;
ptr->age=20;
(3)
strcpy((*ptr).name,"陳會安");
strcpy(ptr->name,"陳會安");
5.
(1)
array[0]
(2)
array[0]
(3)
array[3]
(4)
array[2]
(5)
array[2]
6.
(1)
字串就是字元陣列
(2)
'\0'
3. Ptr+1
&data[1]
Ptr+(LEN-1) &data[LEN-1]
4. (1) struct person a;
struct person *ptr=&a;
(2) a.age=20;
(*ptr).age=20;
Ptr->age=20;
(3) strcpy(a.name,” 陳冠中”);
Strcpy((*ptr) .name, ” 陳冠中”);
Strcpy(ptr ->name, ” 陳冠中”);
5. (1) 0
(2) 1
(3) 3
(4) 2
(5) 最後一個
6.(1) 字串就是字元陣列
(2) line[i]=’\0’
3. Ptr+1
&data[1]
Ptr+(LEN-1) &data[LEN-1]
4.
(1) struct person a;
struct person *ptr=&a;
(2) a.age=20;
(*ptr).age=20;
Ptr->age=20;
(3) strcpy(a.name,” 陳會安”);
Strcpy((*ptr) .name, ” 陳會安”);
Strcpy(ptr ->name, ” 陳會安”);
5.
(1) 0
(2) 1
(3) 3
(4) 2
(5) 最後一個
6.(1) 字串就是字元陣列
(2) line[i]=’\0’
3.
(1)
ptr+1
&data[1]
(2)
ptr+(LEN-1)
4.
(1)
struct person a;
struct person *ptr=&a;
(2)
a.age=20;
(*ptr).age=20;
ptr->age=20;
(3)
strcpy((*ptr).name,"陳會安");
strcpy(ptr->name,"陳會安");
5.
(1)
array[0]
(2)
array[0]
(3)
array[3]
(4)
array[2]
(5)
array[2]
6.
(1)
字串就是字元陣列
(2)
'\0'
3. Ptr+1
&data[1]
Ptr+(LEN-1) &data[LEN-1]
4. (1) struct person a;
struct person *ptr=&a;
(2) a.age=20;
(*ptr).age=20;
Ptr->age=20;
(3) strcpy(a.name,” 陳會安”);
Strcpy((*ptr) .name, ” 陳會安”);
Strcpy(ptr ->name, ” 陳會安”);
5. (1) 0
(2) 1
(3) 3
(4) 2
(5) 最後一個
6.(1) 字串就是字元陣列
(2) line[i]=’\0’
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
1.
ptr+1
&data[1]
2.
ptr=&data[LEN-1]
第四題
1.
struct person a;
struct person *ptr=&a;
2.
a.age=20;
(*ptr).age=20;
ptr->age=20;
3.
strcpy((*ptr).name,"陳會安");
strcry(ptr->name,"陳會安");
第五題
1.[0]
2.[1]
3.[4]
4.[3]
5.[2]
第六題
1.
字元陣列,'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
3.data+1
&data[1]
&data[LEN]
4.(1)a.struct;
(*ptr).struct;
(2)ptr=&a;
(*ptr).age=20;
(3)ptr=&a;
strcpy(a.name,"陳會安");
5.[0][1][4][3][2]
6.字元陣列
'\0'
package NICE;
public class P1
{
public static void main(String[] args)
{
// TODO Auto-generated method stub
int n=21;
int[] f = new int[n];
f[0]=f[1]=1;
for(int i=2;i"+f[i]);
}
}
}
張貼留言