- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Idk 如果我做对了.. 我只是想知道如何将元音加在一起形成三个,因为我的名字是 Daniel 3 total vowels 但是当我添加其他名字时它不起作用。
import java.util.Scanner;
public class Pratclass {
public static void main(String[] args)
{
Scanner std= new Scanner(System.in);
String string1;
System.out.println("What is your name");
string1= std.nextLine();
int count= 0;
int vowels=0;
for(String retval: string1.split(""))
{
for(int i=0; i < retval.length(); i++)
{
char c= retval.charAt(i);
if(c== 'a' || c== 'e' || c== 'i' || c== 'o'|| c== 'u')
{
vowels++;
}
else
{
count++;
}
System.out.println(retval.substring(0,1) + retval.substring(1) + vowels);
vowels=0;
}
}
int total=vowels++;
total=(total + vowels++ + vowels); < How can I count the vowels
System.out.println();
System.out.println(total);
}
}
最佳答案
你也可以用这个...
import java.util.Scanner;
public class Pratclass1 {
public static void main(String[] args) {
Scanner std= new Scanner(System.in);
String string1;
System.out.print("What is your name :");
string1= std.nextLine();
int count= 0;
int vowels=0;
char[] ar = new char[string1.length()];
for(int i = 0; i < ar.length; i++) {
ar[i] = string1.charAt(i);
if(ar[i] == 'a' || ar[i] == 'e' || ar[i] == 'i' || ar[i] == 'o'|| ar[i] == 'u') {
vowels++;
} else {
count++;
}
}
int total=vowels;
System.out.println();
System.out.println(total);
}
关于java - 我试图找到元音然后添加它们,但我这样做对吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32358879/
我试图在 haskell 上创建一个函数,我知道该函数的定义如下: justWithA : [Char] -> Bool justWithA [] = True justWithA (x:xs) |
我试图在 haskell 上创建一个函数,我知道该函数的定义如下: justWithA : [Char] -> Bool justWithA [] = True justWithA (x:xs) |
我正在尝试计算字符串中元音的总数。我正在使用 strlen 来获取字符串的总长度,但是当我尝试按每个字母对字符串进行计数时,它说 C++ 禁止比较。所以我假设我的 if 语句有问题。 #include
Task You are given a string . It consists of alphanumeric characters, spaces and symbols(+,-). Your
我刚刚开始用 C 语言编程,我必须创建一个程序来计算字符串有多少个元音。到目前为止我有这个: int a; int len = strlen(text)-1 for(a=0;a==len;++a){
尝试学习 Python 中的正则表达式以查找具有连续元音-辅音或辅音-元音组合的单词。我将如何在正则表达式中执行此操作?如果无法在 Regex 中完成,是否有一种在 Python 中执行此操作的有效方
我想输入 dagger-alif、dagger-waw 和 dagger-ya(也称为微型 alif、微型哇和微型 ya)作为 alif-wasla 使用 PC 阿拉伯语键盘。这些标记被使用帮助读者发
我正在尝试创建一个将文件上传到 FTP 服务器的批处理文件。除了一个特定文件夹的名称中包含突变/元音外,一切正常(无法更改。也就是文件夹名称中包含 ö。)。 我的问题是:有哪些选择可以实现这一目标?
我是一名优秀的程序员,十分优秀!