統計數字字元個數
描述:
輸入一行字元,統計出其中數字字元的個數。
輸入:
一行字串,總長度不超過255。
輸出:
輸出為1行,輸出字串裡面數字字元的個數。
樣例輸入:
Peking University is set up at 1898.
樣例輸出:
4
演算法:
#include<stdio.h> #include<string.h> #define max 1000 int main() { int i,count=0; char a[max]; gets(a); for(i=0;i<=strlen(a)-1;i++) if(a[i]>='0'&&a[i]<='9') //確定範圍 count++; printf("%d",count); return 0; }
相關推薦
統計數字字元個數
描述: 輸入一行字元,統計出其中數字字元的個數。 輸入: 一行字串,總長度不超過255。 輸出: 輸出為1行,輸出字串裡面數字字元的個數。 樣例輸入: Peking University is set up
T1129 統計數字字元個數(#Ⅰ- 5
【題目描述】輸入一行字元,統計出其中數字字元的個數。【輸入】一行字串,總長度不超過255。【輸出】輸出為1行,輸出字串裡面數字字元的個數。【輸入樣例】Peking University is set u
noi-7546-統計數字字元個數
01:統計數字字元個數 總時間限制: 1000ms 記憶體限制: 65536kB 描述 輸入一行字元,統計出其中數字字元的個數。 輸入一行字串,總長度不超過255。 輸出輸出為1行,輸出
寫一個類,能夠統計某個檔案的純數字字元個數,統計非空白個數,空白字元個數,檔案行數,檔案所在路徑,通過繼承方式,增加一個方法,列印所有的統計資訊
#encoding=utf-8 import os.path class FileInfo(object): def __init__(self,file_path,encoding_type="utf-8"): self.file_path=file_path
統計不同字元個數
輸入一行字元,分別統計出其中英文字母、數字、空格和其他字元的個數。 #include<stdio.h> #include<string.h> int main() { ch
習題8-9 分類統計各類字元個數(15 分)
本題要求實現一個函式,統計給定字串中的大寫字母、小寫字母、空格、數字以及其它字元各有多少。函式介面定義:void StringCount( char *s ); 其中 char *s 是使用者傳入的字串。函式StringCount須在一行內按照大寫字母個數 小寫字母個數 空格個數 數字個數 其它字元個數 的格
C語言分類統計輸入字元個數
/* 檔名:統計字元 編寫日期:2018.9.5 使用軟體:vs2017 編寫思路:使用while語句迴圈統計 */ #include<stdio.h> int main() { char c; int le
python 學習 迴文數 、 田字格 、猜數遊戲、統計不同字元個數DAY15
迴文數 getnum = input("請輸入一個自然數:") if getnum == getnum[::-1]: print("{0}是迴文數".format(getnum)) else: print("該數不是迴文數") 田字格1 for i i
、有一個字串,其中包含中文字元、英文字元和數字字元,請統計和打印出各個字元的個數。
char[] c = { '6', 's', 'd', '7', 'g', '文', '中' }; int z = 0; int s = 0; int y = 0; for (char x : c) switch ((int) x / 10) { case 4:
Python練習題7(統計不同字元數量):編寫一個函式,分別統計出傳入字串引數(可能不只一個引數)的英文字母、空格、數字和其它字元的個數(比如:'hello world,123456,Change the world by program!',這句話有字母33個,數字6個,空格5個,
方法一:用內建方法isdigit()判斷數字,isspace()判斷空格,isalpha()判斷字母,然後格式化輸出 1 def str_count(msgs): 2 letter_count = 0 3 num_count = 0 4 space_count = 0
對於給定的一個字串,統計其中數字字元出現的次數。輸入資料有多行,第一行是一個整數n,表示測試例項的個數,後面跟著n行,每行包括一個由字母和數字組成的字串。
#include <iostream> using namespace std; int main() {int n,i,s;char x; cin>>n;
python統計字母、空格、數字等字元個數
# -*- coding: utf-8 -*- # 要求:輸入一行字元,分別統計出其中英文字母、空格、數字和其它字元的個數。 def count(s): count_a=count_z=count_o=count_s=0 for i in s:
華為oj 字串個數統計&&數字顛倒&&字串翻轉&&字元逆序&&求int型資料在記憶體中儲存時1的個數
同樣只上程式,都是簡單題 #include<iostream> using namespace std; int main() { int in[128], count = 0; char n,temp[100]; memset(in, 0, sizeo
輸入一行字元,統計其中的英文字元、數字字元、空格字元,以及其他字元的個數。請找出以下程式的錯誤,並改正之。
#include <stdio.h> #include <string.h> #define ARR_SIZE 80 main() { char str[ARR_SIZE]; int l
java 集合 有一個字串,其中包含中文字元、英文字元和數字字元,請統計和打印出各個字元的個數
import java.util.HashMap; import java.util.Map; //有一個字串,其中包含中文字元、英文字元和數字字元,請統計和打印出各個字元的個數 public class StringDemo {public static void m
初學java:從鍵盤輸入字串,並統計其中數字字元的個數
import java.util.Scanner; public class Test {public static void main(String[] args) {String s=null;int count = 0;Scanner in=new Scanner(System.in);System.o
輸入一行字元,以回車符作為輸入結束的標誌。統計其中英文字母、數字字元和其他字元的個數。多個字元,以回車符結束,回車符不作為有效字元。有效字元個數不超過100。
#include<stdio.h>#include<string.h>int main(){ char str[1000],ch; gets(str); int letter=0,digit=0,other=0; //分別是英文,數字
統計某個檔案中出現的字元個數,數字個數,空格個數,總共有多少行?
package com.xmobo.mapp.ofcard.test; import java.io.FileInputStream; public class Test { /** *
統計字符串中大寫、小寫、數字的個數(含遍歷)
小寫 logs 字符串轉換 ray png images 技術 img -1 字符串遍歷可以用字符串轉換方法中的toolCharArray();把字符串轉換為字符數組。統計字符串中大寫、小寫、數字的個數(含遍歷)
正則表達式統計字符串中數字的個數
div post log pos 則表達式 image pri src find #coding=utf-8import stringimport restr=‘i have 300 yuan, you 234 234 give me 200 again, then i h