HomeC++Programming

Converting Temperature | Swapping Values in C++

Converting Temperature | Swapping Values in C++
tips4tricx

Converting Temperature from Centigrade to Fahrenheit c++ | Swapping Values Without Using Third Variables in c++

Creating Calculator Using Functions
Using Switch Statement in C++
Creating Simple Calculator in C++ | Using if and else if
My LEARNING C++ From Start to End | Semester Based
C++ How to Program, 9th Edition (Deitel) Free Download

Converting Temperature from Centigrade to Fahrenheit  

Hi Friends! my name is ABID ALI owner and admin @Onlinebloggertricks.com, i am here with a programming post in which we shall learn about two things
1st one is Converting temperature from centigrade to Fahrenheit
so follow is the code given to convert temperature just do practice and learn programming 
2nd one is swapping values without the help of third variable 
tips4tricx
its code is also given below so do same and practice in case of any confusion and misunderstanding of any thing then please send us feedback at contact us forum or use our comment forum to leave your comments 
thanks for reading us 

Swapping Values Without Using Third Variables

Swapping Values Without Using Third Variables

Swapping Values Without Using Third Variables




tips4tricx
#include<iostream>
#include<math.h>
using namespace std;
int main()
{

float t,c,f;
cout<<"Enter Centigrade to Convert in Fahrenheit=";
cin>>c;
t=c*1.8+32;
cout<<"Formula=c*9/5+32"<<"\n";
cout<<"Converted Temperature="<<t<<"\n";
system("pause");

}

Swapping Values Without Using Third Variables

Swapping Values Without Using Third Variables



#include<iostream>
#include<conio.h>
using namespace std;
int main ()
{ //swapping without the help of third veriable
int x, y, z;
x=5, y=6;
cout<<"Value of X="<<x<<"\n";
cout<<"Value of Y="<<y<<"\n";
x=x+y, y=x-y, x=x-y;
cout<<"Swapped Value of X="<<x<<"\n";
cout<<"Swapped Value of Y="<<y<<"\n";
cout<<"\n";
//Want User to Enter Value for Swapping ?? Try the Code Below
cout<<"Hi!!! You Ready to Swap than\n";
cout<<"\n";
cout<<"Enter X to Swap=";
cin>>x;
cout<<"Enter Y to Swap=";
cin>>y,
x=x+y;
y=x-y;
x=x-y;
cout<<"Swapped Value of X="<<x<<"\n";
cout<<"Swapped Value of Y="<<y<<"\n";
system("pause"); cout<<"Thanks You Swapped Successfully";
}

Name

Blogger-Templates,1,Blogging,4,C++,11,Facebook,1,Free-Premium,1,Freebies,4,Google,1,Hack-Facebook,1,Programming,11,SEO,3,Social-Media,1,Softwares,3,Widgets,1,
ltr
item
Online Blogger Tricks | A2Z Art of Blogging: Converting Temperature | Swapping Values in C++
Converting Temperature | Swapping Values in C++
Converting Temperature from Centigrade to Fahrenheit c++ | Swapping Values Without Using Third Variables in c++
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIN8Vb06KczVi2-woj31VWW4flg_R0AKTsQIJOFiygynql3jQ8Ql-VevV5ckDfmz4XekQRAMAzHtX4cr0-zo8N6mkDlJFlpBW_pOae77m3fbvsOycwfqhi5Rft5qKzhnlXMbi3bsJCJv8/s640/prografeatu.JPG
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIN8Vb06KczVi2-woj31VWW4flg_R0AKTsQIJOFiygynql3jQ8Ql-VevV5ckDfmz4XekQRAMAzHtX4cr0-zo8N6mkDlJFlpBW_pOae77m3fbvsOycwfqhi5Rft5qKzhnlXMbi3bsJCJv8/s72-c/prografeatu.JPG
Online Blogger Tricks | A2Z Art of Blogging
https://a4abidaziz.blogspot.com/2016/02/converting-temperature-swapping-values.html
https://a4abidaziz.blogspot.com/
http://a4abidaziz.blogspot.com/
http://a4abidaziz.blogspot.com/2016/02/converting-temperature-swapping-values.html
true
1578912806520322323
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy