簡單C語言程式設計兩道

2021-05-22 05:30:28 字數 978 閱讀 2596

1樓:

沒有vc環境,不過在dev-c++通過了,你看看能用不#include

void fun(int num)

return i;

}int main()

2樓:匿名使用者

1.使用函式呼叫方式編寫程式。編寫函式fun,其功能是:找出一個大於形參m且緊隨m的素數,作為函式值返回。

在main函式中,輸入一個整數,呼叫函式fun並輸出結果到螢幕上。

#include

#include

int isprime(long start)return 1;

}long findnextprime(long number)}int main()

2.使用函式呼叫的方式編寫程式。請編寫函式fun,其功能是:

統計形引數組s字串中數字字元出現的次數,並將統計的次數作為函式值返回。例如:s中字串為:

abcdef35agd3khe7,則數字出現的次數為4次。

在main函式中,輸入一行字元(字元個數不超過80個)到字元陣列str中,呼叫函式fun,統計出數字出現的次數,並在螢幕上輸出結果。

#include

#include

int count(char * str)return countnum;

}int main()

3樓:高金山

vc下編譯執行無錯

1.#include

void fun(int num)

return i;

} int main()

; printf("enter a string:\n");

while((str[i++]=getchar())!='\n');

str[i-1]='\0';

num=fun(str);

printf("%d\n",num);

return 0;}

一道簡單的c語言程式設計題,C語言指標一道簡單的程式設計題

include include int main c語言程式如下,源謝謝採納。不借助臨時變數 include include void main 不用藉助變數藉助變數 int a,b,c 同樣的輸入 c a a b b c 這是核心演算法,其版餘的加齊 權就行了 數字是多大哦,幾百億?include...

一道C語言程式設計題,一道C語言程式設計題

include include define change 0 int main void 你的串號我已經記下,採納後我會幫你製作 應該算是比較完整的程式了,如果你的問題還有補充的話請告訴我.author banxi1988 date 2010 12 9 include include define...

一道簡單c語言程式設計,幫忙分析一下

main s 0,i 0是並列的起始條件 只有一個判斷條件i 3 兩個可迴圈條件i s i 現在看迴圈第一次執行s 0,i 0經判斷語句i 3符合執行下個語句i s i 其中 運算子是自左向右執行i 後,i就等於2,再執行s i,s i s 2 i 2 3執行第2次迴圈此時s 2,i 2 再執行i ...