5-5 使用函式統計指定數字的個數
//使用函式統計指定數字的個數 #include<stdio.h> int countdigit(int number,int digit); int main(int argc,char const *argv[]) { int number,digit; scanf("%d%d",&number,&digit); while(1) { if(digit>=0&&digit<=9) break; printf("請重新輸入:"); } printf("%d中%d的個數是%d\n",number,digit,countdigit(number,digit)); return 0; } int countdigit(int number,int digit) { int cnt=0; int num; if(number<0) number=-number; if(number==0&&digit==0) cnt++; while(number) { num=number%10; if(num==digit) cnt++; number/=10; } return cnt; }
相關推薦
5-5 使用函式統計指定數字的個數
//使用函式統計指定數字的個數 #include<stdio.h> int countdigit(int number,int digit); int main(int argc,char const *argv[]) { int number,digit
C語言--使用函式統計指定數字的個數
本題要求實現一個統計整數中指定數字的個數的簡單函式。 測試程式樣例: #include <stdio.h> int CountDigit( int number, int digit ); int main() { int numbe
使用函式統計指定數字的個數 (10 分)
#include <stdio.h> int CountDigit( int number, int digit ); int main() { int number, digit; scanf("%d %d", &number, &digit
T1102 與指定數字相同的數的個數(#Ⅰ- 5
【題目描述】輸出一個整數序列中與指定數字相同的數的個數。【輸入】輸入包含三行:第一行為N,表示整數序列的長度(N ≤ 100);第二行為N個整數,整數之間以一個空格分開;第三行包含一個整數,為指定的數字m。【輸出】輸出為N個數中與m相同的數的個數。【輸入樣例】3 2 3 2
找出指定數字的所有質因數,比如:90=2*3*3*5。
while style turn emp port pri sqrt return opera 1 from math import sqrt 2 from functools import reduce 3 from operator import mul 4
實驗2-4-1 統計各位數字之和是5的數 (20分)
http://pta.patest.cn/pta/test/13/exam/3/question/411 #include <stdio.h> int is( int num
【NOIP2017模擬8.5】隊伍統計
優先級 con isp pla cnblogs noip 技術分享 freopen 100% Description 現在有n個人要排成一列,編號為1->n 。但由於一些不明原因的關系,人與人之間可能存在一些矛盾關系,具體有m條矛盾關系(u,v),表示編號
與指定數字相同的數的個數
rac spa cti pre return class scan 一個空格 描述 028:與指定數字相同的數的個數 總時間限制:1000ms內存限制:65536kB描述 輸出一個整數序列中與指定數字相同的數的個數。 輸入輸入包含三行:第一行為N,表示整數序列的長度
openjudge #輸出一個整數序列中與指定數字相同的數的個數。
eof 表示 相同 序列 can clas 一個 數字 i++ 輸入格式 輸入包含三行:第一行為N,表示整數序列的長度(N <= 100);第二行為N個整數,整數之間以一個空格分開;第三行包含一個整數,為指定的整數m 輸出模式 輸出為N個數中與m相同的數的個數。 樣例
統計指定文件個數(遞歸的使用)
javapackage File; import java.io.File; /** Created by Administrator on 2017/12/7. 獲取指定文件的個數*/public class GetFileNum {public static void main(String args
JS 1000以內的水仙花數 (三位數 各個數字的立方和等於本身 例如 1*1*1 + 5*5*5 + 7*7*7 = 157)
script document class AC pan code type ctype ava <!DOCTYPE html> <html> <head> <meta charset="UTF-8">
斐波那契數列,1.1.2.3.5.8......,輸入一個數字,比如3,顯示前面三個數字1,1,2.
int 都是 AR public 運行 sca ... 3.5 info 斐波那契數列(從第三個數字開始都是前面兩個數字的和),1.1.2.3.5.8......,輸入一個數字,比如3,顯示前面三個數字1,1,2. 1 public class practice {
ubuntu-14.04.5 升級sshd到指定版本openssh-7.7p1,openssl-1.1.0h。
local head boot deb bsd 沒有 wps tar awk 升級步驟 wget https://wps-oss.oss-cn-shenzhen.aliyuncs.com/openssh_update.tar.gz tar xvf openssh_u
【php】php輸出jquery的輪詢,5秒跳轉指定url
fun 分享 style www. exit oca head ava jquer 1、在php中直接輸出jquery的輪詢,5秒後跳轉指定url 2、代碼稍微改動,即可在html中使用 3、代碼: public function alpha(){
vSphere 5.5.0 U1配置問題:主機的快速統計信息不是最新的
sites cmd HERE bak 選擇 主機 地址 war blog 最近公司新購置了幾臺DELL服務器用來上桌面虛擬化,前期搭建測試環境進行功能驗證,底層自然而然的選擇VMware ESXi,當前最新版本為ESXi 5.5.0 U1,單獨數據庫安裝,相對5.1
找工作筆試面試那些事兒(5)---建構函式、解構函式和賦值函式
作者:寒小陽 時間:2013年9月。 出處:http://blog.csdn.net/han_xiaoyang/article/details/10833931。 宣告:版權所有,轉載請註明出處,謝謝。 類的建構函式、解構函式與賦值函式 &
JavaScript:學習筆記(5)——箭頭函式=>以及實踐
JavaScript:學習筆記(5)——箭頭函式=>以及實踐 ES6標準新增了一種新的函式:Arrow Function(箭頭函式)。本文參考的連結如下: MDN箭頭函式:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/
Week One - 5. 代價函式
Square Error Function 線上性迴歸中,如何選擇引數以達到最好的效果呢?或者說我們如果定義最好呢?基本想法是讓擬合的直線儘量靠近已知的資料點。 具體一點就是: 這裡cost fu
11.5筆記 函式
---恢復內容開始--- 函式 函式在呼叫的時候,會形成一個私有作用域,內部的變數不會被外面訪問,這種保護機制叫閉包。這就意味著函式呼叫完畢, 這個函式形成的棧記憶體會被銷燬,但有時候我們不希望被銷燬。 &
[Java]統計指定目錄中檔案的個數和總的大小
題目 給定一個指定的目錄,例如"E:\音樂",求出該目錄下檔案的總數,以及所有檔案加起來的大小. ·複習了File類的使用方法 ·複習了使用遞迴演算法查詢檔案 程式碼實現 說明 ArrayList<File> fileList; //用於儲存找到的每一個檔