用指针和数组解题2
3、编写一个程序,用冒泡法对数组greeting从小到大进行排序,排序时修改greeting的元素的值。char * greeting[ ]={ “Hello”, ”Good morning “, ”How are you”, “How do you do “, “Good afternoon”, “Good evening”};
4、编写一个程序,输入两个英文句子,每个句子里英文单词之间用空格分隔,输出它们最长的公共单词。
例如: There is a tree behind the house .
A big tree is cut down there .
最长公共词是 tree(不是there)