則這個是仿照strcmp()功能實現的代表,剛開始,格式和型別都不是很熟練,但是功能實現了。從昨晚到今天早上,一直出現錯誤。早上來這邊上課之後,我把之前剛開始的條件判斷,判斷他的截止字元時,把這一塊刪除之後,程式反而可以成功執行了。我覺得應該是我在條件給的重複了,所以會有這種錯誤。
下面是程式**:
#include
#include
int myscp( char *str1,char *str2)
if( str1[i] > str2[i])
printf("str1 > str2, str1 = %s,str2 = %s \n",str1,str2);
else if( str1[i] < str2[i] )
printf(" str1 < str2, str1 = %s,str2 = %s \n",str1,str2);
else
printf(" str1 = str2 = %s",str1);
}int main()
又做出一道題目了
不得不說今天早上的收穫真大,三道dp了 下面是我寫的題解 題目 串的記數 問題編號 38 乙個長度為3n字串滿足 由n 個a,n 個b,n 個c組成,對於它的任意字首,滿足a 的個數 b的個數 c 的個數。求滿足這樣條件的字串的個數。資料範圍 10 的資料滿足0 n 5 100 的資料滿足0 n 6...
一道this的題目
請問下面 中的this值指向的是全域性物件還是物件o?function f return c var o new f console.log o.constructor.name object這裡的this指向全域性物件,因為 c call without new。這裡用正常的方式呼叫的函式 c 所...
這是一道題目 C 的 初步弄出來
2 定義乙個學生資訊類cstudent,描述學生成員的私有資料成員為學號 id 姓名 char pname 成績 fscore 定義相應的成員函式來設定和讀取這些私有成員 並為這個類定義建構函式,拷貝建構函式和析構函式。在main函式裡呼叫該類定義乙個物件,為這個物件賦值,再定義乙個物件,通過 讓這...