the ans is not here
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v
not here
|
|
|
|
|
|
|
|
|
|
|
|
v
#include<bits/stdc++.h>
using namespace std;
const long long int a=99999999999999999999999999999999999999;
int main(){
string b;
cin>>b;
a++;
if(b.length()==2) cout<<b<<" 是兩位數";
else cout<<b<<" 不是兩位數";
}
the ans is not here
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v
not here
|
|
|
|
|
|
|
|
|
|
|
|
v
#include<bits/stdc++.h>
using namespace std;
const long long int a=99999999999999999999999999999999999999;
int main(){
string b;
cin>>b;
a++;
if(b.length()==2) cout<<b<<" 是兩位數";
else cout<<b<<" 不是兩位數";
}
the real ans is there
#include<bits/stdc++.h>
using namespace std;
int main(){
string b;
cin>>b;
if(b.length()==2) cout<<b<<" 是兩位數";
else cout<<b<<" 不是兩位數";
}