演算法競賽入門經典3 2單詞的長度

2021-06-20 18:58:07 字數 524 閱讀 5495

剛開始用了個笨方法,用fgets輸入所有字串後,計算長度。第二種是輸入時用scanf迴圈乙個乙個的輸入字串,並在這個過程計算每個單詞的長度和個數

要注意fgets函式會讀入enter鍵,『\n』。而scanf函式遇到空格即會停止輸入。熟悉字串的處理函式

/*#include#include#include#include#pragma warning(disable:4996)

void main()

*/ /*fgets(s,sizeof(s),stdin);

int len=strlen(s);

printf("%s",s);

for(i=0;i#include#include#include#pragma warning(disable:4996)

void main()

result=(n+0.0)/num;

printf("%.2lf",result);

system("pause");

}

演算法競賽入門經典 C 入門

include 提供輸入輸出流 include 提供常用演算法 using namespace std const int maxn 100 10 int a maxn int main return0 宣告陣列時,陣列大小可以用const宣告的常數。在c 中,這樣的寫法更加推薦。include i...

演算法競賽入門經典 例題 3 2 蛇形填數

在n n方陣裡填入1,2,n n。要求填成蛇形。比如n 4時方陣為 10 11 12 1 9 16 13 2 8 15 14 3 7 6 5 4 上面的方陣中。多餘的空格僅僅是為了便於觀察規律,不必嚴格輸出。n 8。include include include define maxn 10 int...

演算法競賽入門經典 1

想著要學演算法已經很長時間了,但一直都是有問題自己想,很少受 正規軍 編排,網上關於演算法的書倒是不少,其一必推 演算法導論 還有一本 演算法競賽入門經典 作者劉汝佳,好了,步入正題,兩天時間從第一章到第三章結尾,算是對c又進行了一遍複習,說一下新得 3d 3d 03d 知道它們的區別嗎,在呼叫pr...