文章
55
粉丝
100
获赞
12
访问
30.9k
#include<stdio.h>
#include<iostream>
#include<string>
using namespace std;
int main(){
string str;
while(cin>>str){
int len = str.length();
bool flag = true;
for(int i = 0; i<len; i++){
if(str[i] == '.' && str[i+1] != '0'){
flag = false;
}
}
if(flag){
cout<<"Yes"<<endl;
}else{
cout<<"No"<<endl;
}
}
}
登录后发布评论
暂无评论,来抢沙发