Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
Chắc chắn sẽ phải khai báo rồi bạn, và bạn nên khai báo kiểu số thực tại vì số thực nó rộng hơn số nguyên
nếu đề có ghi chia hoặc dấu / thì nên khai báo kiểu số thực để hiện các số thập phân
#include <bits/stdc++.h>
using namespace std;
string st;
int d,i,kt;
char x,ln;
int main()
{
getline(cin,st);
d=5;
x=st[2];
ln=st[0];
for (i=1; i<=d-1; i++)
if (ln<=st[i]) ln=st[i];
if (ln==x) cout<<"YES";
else cout<<"NO";
return 0;
}
Câu 58:
Var n:integer;
Begin
Write('n = ');readln(n);
If n mod 2 <> 0 then write(n,' la so le')
Else write(n,' khong la so le');
Readln
End.
Câu 61:
Var n:integer;
Begin
Write('n = ');readln(n);
If n mod 2 = 0 then write(n,' la so chan')
Else write(n,' khong la so chan');
Readln
End.
#include <bits/stdc++.h>
using namespace std;
long long a[1000],n,i,x;
int main()
{
cin>>n;
for (i=1; i<=n; i++) cin>>a[i];
cin>>x;
bool kt=false;
for (i=1; i<=n; i++)
if (a[i]==x)
{
cout<<i;
break;
kt=true;
}
if (kt==false) cout<<"Khong co";
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
if (n>100 && n<1000) cout<<"La so hop le";
else cout<<"Khong la so hop le";
return 0;
}
var a,b,c:integer;
begin
write('a = ');readln(a);
write('b = ');readln(b);
write('c = ');readln(c);
if (a+b>c) and (a+c>b) and (b+c>a) then
write('ba so do co the la do dai ba canh cua tam giac')
else write('ba so do khong the la do dai ba canh cua tam giac');
readln
end.
Huế chs lq