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.
* Cách tính
Tạo biến X để lưu số giây cần đổi
Hỏi người dùng nhập số giây X
Chuyển X thành giờ, phút, giây bằng cách:
Tính số giờ bằng cách chia X cho 3600 và lấy phần nguyên
Tính số phút bằng cách chia số dư của bước trên cho 60 và lấy phần nguyên
Tính số giây bằng cách lấy số dư của bước trên
Chương trình
#include <bits/stdc++.h>
using namespace std;
long long x,y,tam;
int main()
{
cin>>x>>y;
cout<<"x truoc khi doi la:"<<x<<endl;
cout<<"y truoc khi doi la:"<<y<<endl;
tam=x;
x=y;
y=tam;
cout<<"x sau khi doi la:"<<x<<endl;
cout<<"y sau khi doi la:"<<y;
return 0;
}
uses crt;
var a,b:int64;
begin
clrscr;
readln(a,b);
writeln(a+b);
readln;
end.
Uses crt;
Var
n,t:longint;
BEGIN
Read(n);
While n<>0 do
Begin
t:=t+n mod 10;
n:=n div 10;
End;
Write(t);
Readln;
END.
Refer:
Program baitap;
Uses crt;
Var n,x,T:integer;
Begin
Clrscr;
T:=0;
Write('n='); Readln(n);
While ( N <> 0 ) do
Begin
x := n mod 10;
n := n div 10;
T := T + x;
End;
Writeln('T=',T);
Readln
End.
#include <bits/stdc++.h>
using namespace std;
long long x,y;
int main()
{
cin>>x>>y;
swap(x,y);
cout<<x<<" "<<y;
return 0;
}
-so sanh hai so nhap tu ban phim:
var a,b:integer;
begin
clrscr;
write('Nhap so thu nhat:');readln(a);
write('Nhap so thu hai:');readln(b);
if a>b then writeln(a,'lon hon',b)
else writeln(a,'nho hon,'b);
if a=b then writeln(a,'bang',b);
readln;
end.
program ctdt;
uses crt;
type mang=array[1..10]of integer;
var a,b,min,x,y,i,j,tam:integer;
t,t1:mang;
(*------------------------*)
BEGIN
clrscr;
(*cau a*)
write('nhap 2 so:');readln(a,b);
if a>b then writeln(a,' lon hon ',b);
if a=b then writeln(a,' bang ',b);
if a<b then writeln(a,' nho thua ,b);
(*cau b*)
for i:=1 to 4 do {dua 4 so vao 1 mang}
begin
write(so thu ',i,' :');readln(t[i]);
end;
min:=t[1];
for i:=2 to 4 do
if t[i]<min then min:=t[i];
writeln('so nho nhat trong bon so:',min);
(*cau c*)
write('nhap hai so x,y:');readln(x,y);
if x>y then
begin
tam:=x;
x:=y;
y:=tam;
end;
(*cau d*)
for i:=1 to 3 do {dua 3 so vao mot mang}
begin
write(' so thu ',i,': ');readln(t1[i]);
end;
for i:=1 to 3-1 do
for j:=i+1 to 3 do
if t1[j]>t1[i] then
begin
tam:=t1[j];
t1[j]:=t1[i];
t1[i]:=tam;
end;
for i:=1 to 3 do
write(t1[i]);
readln;
end.
bai nay con vai loi sai nho
ban nen chay tung cau mot va khoa cac cau con lai bang lenh {...}
uses crt;
var x,s,min:real;
i,n:integer;
begin
clrscr;
readln(n);
min:=-32000;
s:=1;
for i:=1 to n do
begin
readln(x);
if min>x then min:=x;
s:=s*x;
end;
writeln('Nho nhat la: ',min:4:2);
writeln('Tich la: ',s:4:2);
readln;
end.