PTA 字串的連線

2021-10-04 23:04:03 字數 710 閱讀 9696

本題要求實現乙個函式,將兩個字串連線起來。

函式介面定義:

char *str_cat( char *s, char *t );

函式str_cat應將字串t複製到字串s的末端,並且返回字串s的首位址。

裁判測試程式樣例:

#include

#include

#define maxs 10

char *str_cat( char *s, char *t );

int main()

, str2[maxs] = ;

scanf("%s%s", str1, str2);

p = str_cat(str1, str2);

printf("%s\n%s\n", p, str1);

return 0;

/* 你的**將被嵌在這裡 */

輸入樣例:

abcdef

輸出樣例:

abcdef

abcdef

char

*str_cat

(char

*s,char

*t )

for( j=0;

*(t+j)

!='\0'

;j++)*

(s+i+j)

='\0'

;return s ;

}

連線字串

建立資料庫連線 sqlconnection con new sqlconnection con.connectionstring system.configuration.configurationmanager.connectionstrings con tostring 配置檔案中已經配置好連線...

PTA 找最長的字串

本題要求編寫程式,針對輸入的n個字串,輸出其中最長的字串。輸入第一行給出正整數n 隨後n行,每行給出乙個長度小於80的非空字串,其中不會出現換行符,空格,製表符。在一行中用以下格式輸出最長的字串 the longest is 最長的字串 如果字串的長度相同,則輸出先輸入的字串。5 liwang zh...

PTA 查詢子串 (字串 函式)

本題要求實現乙個字串查詢的簡單函式。char search char s,char t 函式search在字串s中查詢子串t,返回子串t在s中的首位址。若未找到,則返回null。include define maxs 30 char search char s,char t void readstr...