Những câu hỏi liên quan
Bùi Ngọc Tố Uyên
Xem chi tiết
htfziang
31 tháng 10 2021 lúc 11:32

My taste in art is not the same as my sister's

I think romantic films aren't as interesting as action films

I don't speak Japanese and my new friend doesn't, either

Nester goes climbing less than before

He's had a cold for 2 days because he didn't wear enough clothes

I will spend an hour gettign this task done

My father prefers tea to coffee

Eat less or you will be obese

Bình luận (0)
Bùi Ngọc Tố Uyên
Xem chi tiết
Bùi Ngọc Tố Uyên
Xem chi tiết
Bùi Ngọc Tố Uyên
Xem chi tiết
Bùi Ngọc Tố Uyên
Xem chi tiết
nguyễn trần
31 tháng 10 2021 lúc 11:43

1B
2A
3B
4C
5C
6D
7C
8C
9B
10B
11C
12A
13D
14A
15C
16D
17B
18C
19C
20D
21D
22D
 

Bình luận (0)
Bùi Ngọc Tố Uyên
Xem chi tiết
nguyễn trần
31 tháng 10 2021 lúc 11:31

VIII
1. too
2. so
3. doesn't
4. can't
5. too

Bình luận (0)
nguyễn trần
31 tháng 10 2021 lúc 11:45

VII
1A
2A
3D
4D
5A

 

Bình luận (0)
Bùi Ngọc Tố Uyên
Xem chi tiết
Nguyễn Lê Phước Thịnh
14 tháng 3 2022 lúc 10:22

uses crt;

var st:string;

d,i,t,x,y,a,b:integer;

begin

clrscr;

readln(st);

d:=length(st);

for i:=1 to d do write(st[i]:4);

writeln;

t:=0;

for i:=1 to d do

begin

val(st[i],x,y);

t:=t+x;

end;

writeln(t);

val(st[d],a,b);

if (a mod 2=0) then write(1)

else write(-1);

readln;

end.

Bình luận (0)
Bùi Ngọc Tố Uyên
Xem chi tiết
Nguyễn Lê Phước Thịnh
13 tháng 3 2022 lúc 11:17

#include <bits/stdc++.h>

using namespace std;

long long a[1000],i,n,t,dem,t1;

int main()

{

cin>>n;

for (i=1; i<=n; i++) cin>>a[i];

t=0;

for (i=1; i<=n; i++) if (a[i]%2==0) t+=a[i];

cout<<t<<endl;

t1=0;

dem1=0;

for (i=1; i<=n; i++)

if (a[i]<0)

{

cout<<a[i]<<" ";

t1+=a[i];

dem1++;

}

cout<<endl;

cout<<fixed<<setprecision(1)<<(t1*1.0)/(dem1*1.0);

return 0;

}

Bình luận (0)
Bùi Ngọc Tố Uyên
Xem chi tiết
Nguyễn Lê Phước Thịnh
13 tháng 3 2022 lúc 11:18

#include <bits/stdc++.h>
using namespace std;
long long a,b;
//chuongtrinhcon
long long gcd(long long a,long long b)
{
    if (b==0) return(a);
    return gcd(b,a%b);
}
//chuongtrinhchinh
int main()
{
    cin>>a>>b;

cout<<max(a,b)<<endl;

cout<<gcd(a,b)<<endl;
    if ((a>0 && b>0) or (a<0 && b<0)) cout<<a/gcd(a,b)<<" "<<b/gcd(a,b);
    else cout<<"-"<<-a/gcd(-a,b)<<" "<<b/gcd(-a,b);
    return 0;
}

 

Bình luận (0)