1. Report post
2. Block or unfollow user
3. Tell parent
Answer:
The pseudocode is as given below while the flowchart is attached.
Explanation:
The pseudocode is as follows
input customer name, number of texts
Set Basic bill=5 $;
if the number of texts is less than or equal to 60
Extra Charge=0;
If the number of texts is greater than 60 and less than 200
number of texts b/w 60 and 200 =number of texts-60;
Extra Charge=0.1*(number of texts b/w 60 and 200);
else If the number of texts is greater than 200
number of texts beyond 200 =number of texts-200;
Extra Charge=0.25*(number of texts beyond 200)+0.1*(200-60);
Display Customer Name
Total Bill=Basic bill+Extra Charge;
Total Bill after Tax=Total Bill*1.12;
<span>Cystagia from Dynamic Nutritionals is a homeopathic UTI, bladder and kidney support that promotes urinary tract health and function.</span>
Answer:
Try the Cesar cypher
Explanation:
The Cesar cypher shifts the letters one side
Answer:
// here is code in c++.
#include <bits/stdc++.h>
using namespace std;
// recursive function to print digit of number in revers order
void rev_dig(int num)
{
if(num==0)
return;
else
{
cout<<num%10<<" ";
// recursive call
rev_dig(num/10);
}
}
// driver function
int main()
{
int num;
cout<<"enter a number:";
// read the number from user
cin>>num;
cout<<"digits in revers order: ";
// call the function with number parameter
rev_dig(num);
return 0;
}
Explanation:
Read the input from user and assign it to variable "num". Call the function "rev_dig" with "num" parameter.In this function it will find the last digit as num%10 and print it. Then call the function itself with "num/10". This will print the second last digit. Similarly it will print all the digits in revers order.
Output:
enter a number:1234
digits in revers order: 4 3 2 1
Diagram :