Skip to main content

Posts

Showing posts with the label Programming

AD

How to make age calculator tool website on blogger

How to make age calculator tool website on blogger How to make age calculator on  Blogger Website . We will know all these things in this article related to  make age calculator . Nowadays  blogging  is at one level only. So in such a situation there are different departments in the blogging sector. So, one of the best is tool website. Many of my subscribers have asked me in the comment that  how can we make age calculator tool websiteon Blogger / Blogspot Platform? Your age calculator looks like this .... Let me tell you clearly that a different trend of  Age Calculator  is going on. So in such a situation, everyone wants to have their own age calculator tool. So in such a situation, I have explained in detail in this post how you can easily make age calculation tool. What is Age Calculator Tool? There are many new bloggers who have just entered the field of blogging. Which are they to do something new in this blogging industry? So in such a situ...

The following program reads the letter from A to Z and prints it's corresponding telephone digit. This program uses a sentinal controlled while loop . To stop the program user is promoted for the sentinal which is # .

  The following program reads the letter from A to Z and prints it's corresponding telephone digit. This program uses a sentinal controlled while loop . To stop the program user is promoted for the sentinal which is # . SOURCE  CODE :- #include <iostream>  using namespace std;  int main()  {  char letter ; cout << "This is a program to convert uppercase Letter from A to Z into their corresponding telephone digit " << endl ; cout << "To stop this program enter # " << endl ; cout << "Enter an uppercase letter : " << endl ; cin >> letter ; while (letter != '#' ) { cout << "The letter you entered is " << letter << " and the corresponding telephone digit is : " << endl ; if (letter >= 'A' && letter <= 'Z' ) { switch (letter) { case 'A' : case 'B' : case 'C' : cout << "2" << endl ; bre...

Quiz. Project Source Code C++ For Biggners ,, Quiz. Game Using if else statements..

INTRODUCTION :-                                             My project is simply a quiz game . This quiz consist of ten questions . Every question has one mark . If user pick correct option than it will add one mark . If user pick wrong option , than no negative marking done . Passing marks is 6 . The result will be shared at the end . And you will be informed about that you are pass or fail . This source code of this  Quiz Game consist different functions , conditional sentences , loop etc .   SOURCE  CODE :- #include <iostream> //header file using namespace std; //header file int playquiz () ; //function prototype int main()  {     int finalresult ; //declare a data type     char playagain ; //declare a char data type     finalresult = playquiz() ; //function call     while (finalresult >= 6 ) //loop ...