当前位置: 代码迷 >> 综合 >> codeforces 1111A Superhero Transformation
  详细解决方案

codeforces 1111A Superhero Transformation

热度:4   发布时间:2023-12-06 07:37:10.0

题目:Superhero Transformation

思路:模拟即可。

代码:

#include<bits/stdc++.h>
using namespace std;#define maxn 1000char a[maxn+5],b[maxn+5];bool isvowel(char x) {
    if(x=='a'||x=='e'|x=='i'||x=='o'||x=='u') return true;else return false;
}int main() {
    scanf("%s%s",a,b);if(strlen(a)!=strlen(b)) {
    printf("No");return 0;}bool flg=0;for(int i=0;i<strlen(a);i++) if(isvowel(a[i])^isvowel(b[i])) {
    printf("No");return 0;}printf("Yes");	return 0;
}