Learn Computer Programming Free from our source codes in my website.
Sponsored Link Please Support
https://www.techseries.dev/a/27966/qWm8FwLb
https://www.techseries.dev/a/19181/qWm8FwLb
My Personal Website is http://www.jakerpomperada.com
Email me at jakerpomperada@gmail.com and jakerpomperada@yahoo.com
Sunday, September 25, 2022
Celsius To Fahrenheit in TypeScript
Machine Problem
Write a program that will convert the given Celsius value of 100 into Fahrenheit equivalent, and display the results on the screen.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Count Number of Words in a String in C
A simple program to ask the user to give a sentence and then the program will count the number of words in the given sentence in C programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
#include <stdio.h>
#include <string.h>
int main()
{
char given_string[100];
int count = 0, i=0;
printf("\n\n");
printf("\tCount Number of Words in a String in C\n\n");
printf("\tGive a String : ");
gets(given_string);
for (i = 0; given_string[i] != '\0';i++)
{
if (given_string[i] == ' ')
count++;
}
printf("\n\n");
printf("\tNumber of words in the string are: %d",count + 1);
printf("\n\n");
printf("\tEnd of Program\n");
}
Saturday, September 24, 2022
Employees Wage Solver in Java
A simple program to solve the employees wage using Java programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Count Number of Words in a String in C++
A simple program to ask the user to give a sentence and then the program will count the number of words in the given sentence in C++ programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
#include <iostream>
#include <string>
using namespace std;
int main ()
{
char given_string[100];
int count = 0, i=0;
cout << "\n\n";
cout <<"\tCount Number of Words in a String in C++\n\n";
cout << "\tGive a String : ";
cin.getline (given_string,100);
for (i = 0; given_string[i] != '\0';i++)
{
if (given_string[i] == ' ')
count++;
}
cout << "\n\n";
cout << "\tNumber of words in the string are: " << count + 1;
cout << "\n\n";
cout <<"\tEnd of Program\n";
}
Car Brands Using ng-repeat in AngularJS
Machine Problem
Write a program that uses ng-repeat directive that will display the list of car brands like Ford,Toyota, Hyundai, Suzuki, Mitsubishi, Lexus, Nissan, Chevrolet, Audi, Bently, BMW, Chrysler, Dodge, Ferrari, Fiat, Foton, and GAC. The program will also display the list of car brands in alphabetical order on the screen.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Friday, September 23, 2022
US Dollar To Philippine Peso in Go
A simple program to ask the user to give us dollar value and convert it into Philippine Peso equivalent using Go programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
Swap Two Numbers in Go
Machine Problem
Write a program that will ask the user to give two numbers and then the program will swap the arrangement of the two numbers and display the result on the screen.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
// swap.go
package main
import "fmt"
func main() {
var val1,val2,temp int32
fmt.Print("\n")
fmt.Print("\tSwap Two Numbers")
fmt.Print("\n\n")
fmt.Print("\tEnter first value : ")
fmt.Scanf("%d\n",&val1)
fmt.Print("\tEnter second value : ")
fmt.Scanf("%d\n",&val2)
fmt.Print("\n\n")
fmt.Print("\t===== BEFORE SWAPPING ===== ")
fmt.Print("\n\n")
fmt.Print("\tA = ",val1," and B = ",val2)
fmt.Print("\n\n")
temp = val1;
val1 = val2;
val2 = temp;
fmt.Print("\t===== AFTER SWAPPING ===== ")
fmt.Print("\n\n")
fmt.Print("\tA = ",val1," and B = ",val2)
fmt.Print("\n\n\n")
fmt.Print("\tEnd of Program")
fmt.Print("\n")
}
Thursday, September 22, 2022
Greatest Common Divisor in C++
A simple program to compute the greatest common divisor based on the two given numbers by the user using C++ programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
#include <iostream>
using namespace std;
int gcd(int a,int b){
if(b == 0)
return a;
return gcd(b,a%b);
}
int main() {
int a=0,b=0;
cout <<"\n\n";
cout <<"\tGreatest Common Divisor";
cout <<"\n\n";
cout <<"\tEnter Two Numbers : ";
cin>>a>>b;
cout <<"\n\n";
cout<<"\tThe Greatest Common Division is "
<<gcd(a,b)<<".";
cout <<"\n\n";
cout <<"\tEnd of Program";
cout <<"\n\n";
}
#define command in C
A simple program to demonstrate macro #define using C programming language.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
#include <stdio.h>
#define displays printf
void main()
{
displays("\n\n");
displays("\tDefines a macro in C programming language");
displays("\n\n");
}