จำนวนเฉพาะ T^T (การบ้านเลข)

เริ่มโพสต์โดย Vee, 24 พ.ค. 2005, 23:00 น.

0 สมาชิก และ 1 บุคคลทั่วไป กำลังเปิดอ่านโพสต์นี้

Vee

    40
    ---
     7
---------
   651
  ------
   620

เรื่องเศษซ้อนอะค่ะ ใครพอเข้าใจเลขข้างบนไหม

วีทำไม่ได้ T^T (ติดตรง 651 ส่วน 620 ตัดทอนไม่ได้เลยหรอ)

iannnnn

มันคืออะไรเหรอ


(เข้า

นายโอ้เอ้

Today you , Tomorrow me.

โต

ไม่เข้าใจคำถาม??

saa3

#4

โต

อ๋อ เอาชั้นเล็

Vee


Vee


saa3

มื่อปี พ.ศ. 2308 พระเจ้ามังระ

iannnnn

PROGRAM EUCLID_GCD
VAR
        a, b, r: extended;
        (* Use type real if you do not have extended *)
        (* precision, but his limits the number of *)
        (* significant figures to about 11. *)
BEGIN
        writeln ('type two positive number separated by a space');
        read (a, b);
        writeln ('gcd of', a:0:0, 'and', b:0:0, 'is');
        (* Since a and b change their values during the *)
        (* program, we have to put this here !*)
        WHILE b > 0 DO
                BEGIN
                        r := a - b * INT (a/b);
                        a := b; b := r;
                END;
        writeln (a:0:0);
END.

iannnnn


นายโอ้เอ้

pascal นี่หว่า ไปหามาจา
Today you , Tomorrow me.

saa3

เฮียอย่าทำให้เด็

iannnnn


saa3


SMF 2.1.7 © 2026, Simple Machines