hdu 2027

ps:发现语文理解能力不行也是醉醉的....是每个测试实例空行....空!行!不是空格!

还有就是gets才能吸收空格,而scanf不能.

代码:

#include "stdio.h"
#include "stdlib.h"
#include "string.h"
int main(){
 int i,j,num[5];
 int n,s;
 char x[110];
 char zimu[5]={‘a‘,‘e‘,‘i‘,‘o‘,‘u‘};
 while(~scanf("%d",&n)){
  getchar();
  for(i=0;i<n;i++){
   gets(x);
   s=strlen(x);
   for(j=0;j<5;j++) num[j]=0;
   for(j=0;j<s;j++){
    if(x[j]==zimu[0]) num[0]++;
    if(x[j]==zimu[1]) num[1]++;
    if(x[j]==zimu[2]) num[2]++;
    if(x[j]==zimu[3]) num[3]++;
    if(x[j]==zimu[4]) num[4]++;
   }
   if(i==n-1){
   printf("a:%d\ne:%d\ni:%d\no:%d\nu:%d\n",num[0],num[1],num[2],num[3],num[4]);
   }
   else{
    printf("a:%d\ne:%d\ni:%d\no:%d\nu:%d\n\n",num[0],num[1],num[2],num[3],num[4]);
   }
   //puts("");
  }
 }
 return 0;
}

时间: 2024-10-22 10:05:02

hdu 2027的相关文章

hdu 2027 java函数 水过~~~~

import java.util.*; class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); while(sc.hasNext()){ /* *.hasNext()可以连续输入多组测试数据 */ int n=sc.nextInt(); sc.nextLine(); /* 接受换行符 */ for(int i=1;i<=n;i++){ String str = sc.next

hdu 2027 统计元音

统计元音 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 58391    Accepted Submission(s): 23254 Problem Description 统计每个元音字母在字符串中出现的次数. Input 输入数据首先包括一个整数n,表示测试实例的个数,然后是n行长度不超过100的字符串. Output 对于每个测

hdu 2027 统计元音 (java)

问题: 注意for循环中参数,不要搞混了. 注意空行和换行的区别,题目是讲的不空行,但还是要进行换行. 统计元音 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 45831    Accepted Submission(s): 18695 Problem Description 统计每个元音字母在字符串中出现的次数. Input 输入数

HDU 2027 汉字统计

汉字统计 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 30230    Accepted Submission(s): 16588 Problem Description 统计给定文本文件里汉字的个数. Input 输入文件首先包括一个整数n,表示測试实例的个数,然后是n段文本. Output 对于每一段文本.输出当中的汉字的个数.

HDU分类

模拟题, 枚举 1002 1004 1013 1015 1017 1020 1022 1029 1031 1033 1034 1035 1036 1037 1039 1042 1047 1048 1049 1050 1057 1062 1063 1064 1070 1073 1075 1082 1083 1084 1088 1106 1107 1113 1117 1119 1128 1129 1144 1148 1157 1161 1170 1172 1177 1197 1200 1201 12

转载:hdu 题目分类 (侵删)

转载:from http://blog.csdn.net/qq_28236309/article/details/47818349 基础题:1000.1001.1004.1005.1008.1012.1013.1014.1017.1019.1021.1028.1029. 1032.1037.1040.1048.1056.1058.1061.1070.1076.1089.1090.1091.1092.1093. 1094.1095.1096.1097.1098.1106.1108.1157.116

HDU——PKU题目分类

HDU 模拟题, 枚举1002 1004 1013 1015 1017 1020 1022 1029 1031 1033 1034 1035 1036 1037 1039 1042 1047 1048 1049 1050 1057 1062 1063 1064 1070 1073 1075 1082 1083 1084 1088 1106 1107 1113 1117 1119 1128 1129 1144 1148 1157 1161 1170 1172 1177 1197 1200 1201

最小路径覆盖 hdu 1151 hdu 3335

Air Raid Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3122    Accepted Submission(s): 2027 Problem Description Consider a town where all the streets are one-way and each street leads from on

HDU 6203 ping ping ping [LCA,贪心,DFS序,BIT(树状数组)]

题目链接:[http://acm.hdu.edu.cn/showproblem.php?pid=6203] 题意 :给出一棵树,如果(a,b)路径上有坏点,那么(a,b)之间不联通,给出一些不联通的点对,然后判断最少有多少个坏点. 题解 :求每个点对的LCA,然后根据LCA的深度排序.从LCA最深的点对开始,如果a或者b点已经有点被标记了,那么continue,否者标记(a,b)LCA的子树每个顶点加1. #include<Bits/stdc++.h> using namespace std;