1
Maarifa ya kujenga
2
Maarifa ya kujenga
3
Maarifa ya kujenga
4
Maarifa ya kujenga
5
Maarifa ya kujenga
Question:...
Sunday, September 16, 2018
undefined
201
Question: Write a C++ program that prints or displays pascal triangle on screen
Solution
PLEASE LEAVE A COMMENT, OR ANY OTHER QUESTIONS INVOLVING ANY OF THE FOLLOWING LANGUAGES, C++, PHP, JAVASCRRIPT, HTML, CSS, MYSQL
...
undefined
201
Question: Write a C++ program that asks a teacher to enter marks of five subjects of his/her student and then calculate the average of the marks entered.
HINT: Use a while loop to iterate the five marks entered, when the fifth mark has been entered, the loop should exit, calculate the average and display...
undefined
201
Question: Write a c++ program to ask a user to enter a number, if a number is negative it should display "Negative number entered!" else if it is positive, it should determine if that number is greater than 10 or not.
Solution
PLEASE LEAVE A COMMENT, OR ANY OTHER QUESTIONS INVOLVING ANY OF THE FOLLOWING...
undefined
201
Question: The triangle inequality theorem states that the sum of the lengths of any two sides of a triangle must be greater than or equal to the length of the third side. Write a program that asks a user tp enter lengths of the three sides of a triangle. The program then tests whether the lengths supplied form a triangle.
Solution
PLEASE...
Question: Write a C++ program to check whether a number entered by user is odd or even.
Solution
PLEASE LEAVE A COMMENT, OR ANY OTHER QUESTIONS INVOLVING ANY OF THE FOLLOWING LANGUAGES, C++, PHP, JAVASCRRIPT, HTML, CSS, MY...
Question: Write a block of code that prompts user to enter the radius, then compute and output the volume of a sphere. (Recall that volume V of a sphere of radius r is given by V = (4/3)PIr3 and assume PI = 3.14
Solution
if(r <= 0) This condition ensures that the radius cannot be zero or negative
PLEASE...
Saturday, September 15, 2018
undefined
201
Question 5: The current year and the year in which the Songea Teachers College employee joined the institution entered through the keyboard. if the number of years for which the employee has saved the college is greater than 10years,then the bonus of Tsh.250,000/= is given to the employee. if the years of the...
undefined
201
Question 4: While purchasing C++ programming books at the STC Bookstore discount of 12.5% is offered if the number of books purchased is more than 1000.if the number of book and price per book are input through keyboard
Write c++ program compute amount (expenses) that will be paid by customer
HINT: provide...
undefined
201
Question 3:Write C++ Program to Find Largest Number among Three Numbers
Solution
#include<iostream>
using namespace std;
int main(){
float a,b,c;
cout<<"\nC++ PROGRAM TO CHECK THE GREATEST NUMBER\n\n";
cout<<"Enter the first number\n";
cin>>a;
cout<<"Enter the second number\n";
...