編寫程式,使用者輸入英文句子,回車後,輸出處理後的語句 處理原則 句子的第一

2021-03-26 07:02:57 字數 2590 閱讀 3388

1樓:聽不清啊

#include(stdio.h>

int main()

else

puts(s);

return 0;}

c++程式設計題:編寫一個程式,由使用者輸入一個含有5個單詞的英文句子,按照使用者的要求輸出句中的第i個單詞。 10

2樓:不如睡你結

原始碼:==

============code===============#!usr/bin/perl

print "please enter a sentence containing 5 words:\n";

$sentence = ;

print "\nwhich word do you want to print?\nenter a number from 1 to 5:\n";

$num = ;

@words = split /\s+/, $sentence;

print "the word is:\t$words[$num-1]\n";

==============code===============

做一個c語言程式,輸入一個英文句子,然後把句子中的空格都換成換行 輸出

3樓:

#include

int main()}

4樓:雜亂_思凡

#include

#include

int main()

return 0;}

【c程式設計】輸入一個英語的句子(以回車結束輸入),將句子中各單詞分行列印出

5樓:誰動了我的喵

||#include

#define n 9999

void main()

編寫一個程式,由使用者輸入一個含有5個單詞的英文句子,按照使用者的要求輸出句中的第i個單詞。

6樓:匿名使用者

給你個perl原始碼:

==============code===============#!usr/bin/perl

print "please enter a sentence containing 5 words:\n";

$sentence = ;

print "\nwhich word do you want to print?\nenter a number from 1 to 5:\n";

$num = ;

@words = split /\s+/, $sentence;

print "the word is:\t$words[$num-1]\n";

==============code===============

編寫application程式,接受使用者輸入的一段英文文字後,輸出其中的字元數、單詞數和句子數

7樓:夏浩峻

public static void main(string args)

for(int i=0;i您輸入的字元數為:"+charcount);

system.out.println("您輸入的單詞數為:"+wordcount);

system.out.println("您輸入的句子數為:"+sentencecount);

} catch (ioexception e)

5. 編寫一個程式,由使用者輸入一個含有5個單詞的英文句子,按照使用者的要求輸出句中的第i個單詞。

8樓:匿名使用者

語言 環境 編譯器..........

而且你的表達.........

我看i 怎麼都像 1 最好該成 n 多好..

9樓:匿名使用者

暈 看了半天 看不懂 你們在說什麼

10樓:手機使用者

program abc;

vara:array[1..5] of string;

b:integer;

begin

for b:=1 to 5 do read(a[b]);

writeln;

writeln(a[1]);

readln;

end.

編寫一個程式,要求使用者輸入一個兩位數,然後顯示該數的英文單詞(用switch語句)

11樓:匿名使用者

確定要用switch? 兩位數有90個呢。

var result = prompt("請輸入一個一位數","");

switch(result)

用js簡單實現了一個,放在瀏覽器可以直接執行。

12樓:2樑瀟

#include

int main()

}else

printf(" - ");//列印「 - 」符號switch (a%10)}

return 0;}

使用者用vb編寫程式 輸入年份和月份,程式能夠判斷其是否是閏年,那個季節,這個月多少天

將以下內容復到記事本中 然後 儲存為 form1.frm version 5.00 begin vb.form form1 caption form1 clientheight 4830 clientleft 60 clienttop 450 clientwidth 8325 linktopic f...

c語言編寫程式輸入正整數將其逆序輸出例

include int main return 0 分析 首先,輸入的是一個整數,因此最前面一位數不是零,所以我們可以用除10取餘法寫。a num 10 就是輸出數字的最後一位 然後除10剔除數字最後一位,這樣數字倒數第二位就會輸出。以此類推,就能逆序輸出數字。拓展資料for迴圈是程式語言中一種開界...

用C語言編寫程式,輸入整數,輸出09各數字在該整數

include include include int main 用遞迴寫了個小程式,測試是可行的。算是提供個參考吧 include int a 10 void tongji int inum else void main include void main printf d t d t d t d...