Yêu cầu: Viết chương trình pascal nhập vào M là số tiền. Hãy cho biết với số tiền đó có thể đổi ra được bao nhiêu tờ bạc loại: 100, 50, 20, 10, 5, 2, 1 đồng?

2 câu trả lời

uses crt;

var M,a,b,c,d,e,f,g:integer;

begin

write('nhap so tien:');readln(M);

a:=M div 100;

b:=M div 50;

c:=M div 20;

d:=M div 10;

e:=M div 5;

f:=M div 2;

g:=M div 1;

writeln('dc ',a,' to 100');

writeln('dc ',b,' to 50');

writeln('dc ',c,' to 20');

writeln('dc ',d,' to 10');

writeln('dc ',e,' to 5');

writeln('dc ',f,' to 2');

writeln('dc ',g,' to 1');

readln;

end.

program bai_giai;
uses crt;
var a:array[1..9]of longint;m,i,kt,j:longint;
begin
 clrscr;
  a[1]:=1;
  a[2]:=2;
  a[3]:=5;
  a[4]:=10;
  a[5]:=20;
  a[6]:=50;
  a[7]:=100;
  a[8]:=200;
  a[9]:=500;
  write('nhap m:=');readln(m);
  for i:=1 to m do
        begin
         if(m mod i=0)then
                begin
                 kt:=0;
                 for j:=1 to 9 do if(a[j]=i)then kt:=1;
                 if (kt=1)then write(i,' ');
                end;
        end;
 readln;
end.

mình chỉ biết có cách này thôi nha bạn

Câu hỏi trong lớp Xem thêm
5 lượt xem
2 đáp án
22 giờ trước

giup e voi I/ Supply the correct form of the verbs in brackets 1. You (think) ……………………… collecting stamps costs much money? 2. Every year, my mother (give) ……………………… me a nice doll on my birthday. 3. Jenny says she loves collecting pens but she (not/continue) ……………………… this hobby from next year. 4. If you wash your hands more, you (have)……………………. less chance of catching flu. 5. Getting plenty of rest is very good. It (help)…………………. you to avoid depression. 6. Mr. John (be) ……………………… principal of our school since last year. 7. I (see) ……………………… a car accident on this corner yesterday. 8. We like (come)……………………to school by bus, but we hate (stand)………………………. and (wait) …………………… in the rain. 9. ……………………… (you/ ever/ meet) anyone famous? 10. My mother (come) ……………………… to stay with us next weekend. 11. When he lived in Manchester, he (work) ……………………… in a bank. 12. We (be) ……………………… students for four years. 13. We are planting trees around our school now. Our school (be) ……………………… surrounded by a lot of green trees. 14. What ……………………… your father usually ……………………… (do) in the evenings? 15. My sister likes (cook) ……………………… very much. She can cook many good foods. 16. My father says when he's retired, he (go) …………………… back to his village to do the gardening. 17. They want (buy) ……………………… some meat for dinner. 18. Linh is my best friend. We (know) ……………………… each other for 5 years. 19. I enjoy (fish) ……………………… because it is relaxing. 20. How about (go) ……………………… to the movie theatre?

3 lượt xem
1 đáp án
1 ngày trước