Make a program to enter the amount in Rupees and print into paise.
... chapter_8_python_subject_computer
class 10th
Answers
Answered by
3
I haven't learnt python yet, so cant help. But if you need it in C, Here you go.
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
float a;
int c;
printf("Enter Amount =");
scanf("%f",&a);
c=a*100;
printf("%f Rupees = %d Paisa\n",a,c);
getch();
}
Answered by
8
Answer:
N=input('enter the amount in paise')
d1=N%100
d2=N//100
print'the amount',d1,'Rupees',d2,'paise'.
mark it BRAINLIEST if u found it helpful
Similar questions