We're a community of 1076K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,075,983 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion Reply to this Discussion

Program to swap 2 digit number

As for my assignment I had to write a program to swap 2 digit number
Example:- If user input 12 the swaped number Would be 21.
Along with ALgorithm, and a short description on this program(As how will you solve this program or what measure you'll take to get desired results).
Please Help..

3
Contributors
4
Replies
11 Hours
Discussion Span
3 Months Ago
Last Updated
9
Views
Question
Answered
dendenny01
Light Poster
28 posts since Dec 2011
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

Have you started already? If not, why so? What in particular are you having difficulties with?
As a hint: modulo 10, division by 10, multiplication by 10; you can pretty much solve your task using these operations.

mvmalderen
Posting Maven
2,612 posts since Feb 2009
Reputation Points: 2,221
Solved Threads: 280
Skill Endorsements: 36

a piece of advice: try to work the digits separately.. and listen to the hint above!

KaeLL
Newbie Poster
15 posts since Sep 2012
Reputation Points: 0
Solved Threads: 3
Skill Endorsements: 0

Is this correct...

#include<stdio.h>
#include<conio.h>
void main();
{
int a,b,c;
printf("Enter a 2 digit number\n");
scanf("%d",&a);
b=a/10;
c=a%10;
printf("The swaped digits are %d%d",b,c);
getch();
}
dendenny01
Light Poster
28 posts since Dec 2011
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

Is this correct...

Apart from not following the standard and being unportable I'd say no.
Did you even try it out? Compile, run and answer your own question.
If it doesn't compile, fix the compiler error, if it runs but doesn't produce the correct output, fix the bug and compile again.

mvmalderen
Posting Maven
2,612 posts since Feb 2009
Reputation Points: 2,221
Solved Threads: 280
Skill Endorsements: 36
Question Answered as of 2 Months Ago by mvmalderen and KaeLL

This question has already been solved: Start a new discussion instead

Post: Markdown Syntax: Formatting Help
 
You
View similar articles that have also been tagged:
 
© 2013 DaniWeb® LLC
Page rendered in 0.0768 seconds using 2.67MB