Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

พิมพ์ทวีคูณของหน่วยหลักของจำนวนที่กำหนดในโปรแกรม C


ป้อนหมายเลข N และดึงตัวเลขหลักหน่วยของตัวเลขที่ระบุและแสดงการคูณของตัวเลขนั้น

ป้อนข้อมูล − N=326

ผลผลิต − หลักหน่วยคือ 6 และผลคูณของมันคือ 2 และ 3

หมายเหตุ − หลักหน่วยของตัวเลขใดๆ สามารถดึงออกมาได้โดยการคำนวณ %10 ด้วยตัวเลขนั้น

ตัวอย่างเช่น − หากคุณได้รับตัวเลข N และคุณจำเป็นต้องค้นหาหลักหน่วยที่

คุณสามารถใช้ N%10 ได้ มันจะคืนหน่วยหลักของตัวเลข N

อัลกอริทึม

START
Step 1 -> Declare start variables num, num2 and i
Step 2 -> input number num
Step 3 -> store num%10 in num2 to fetch unit digit
Step 4 -> print num2
Step 5 -> Loop For i=2 and i<=num2/2 and ++i
   IF num2%i=0\
      Print i
   End IF
Step 6 -> End For Loop
STOP

ตัวอย่าง

#include<stdio.h>
int main() {
   int num,num2,i;
   printf("\nenter a number");
   scanf("%d" , &num);
   num2=num%10;    //storing unit digit in num2
   printf("\n unit digit of %d is: %d",num,num2);
      for(i=2;i<=num2/2;++i) {    //loop till half of unit digit
      if(num2%i==0) { //calculate multiples
         printf("\n multiple of %d is : %d ",num2,i);
      }
   }
return 0;
}

ผลลัพธ์

หากเรารันโปรแกรมด้านบน มันจะสร้างผลลัพธ์ต่อไปนี้

enter a number329
unit digit of 329 is: 9
multiple of 9 is : 3