Write a program to print the swapping in two no and using
three variable.
Answers were Sorted based on User's Feedback
Answer / guest
int a=10,b=20;
a=a+b;
b=a-b;
a=a-b;
S.o.pln(a);
S.o.pln(b);
| Is This Answer Correct ? | 17 Yes | 4 No |
Answer / saiteja gangisetty
#include<stdio.h>
void main()
{
int a,b,temp;
printf("enter a, b values");
scanf("%d%d",a,b);
temp=a;
a=b; (or) // b=a*b/a=b;
b=temp;
printf("a=%d and b=%d",a,b);
}
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / anshuman jha
#include<iostream.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
cout<<"Enter the two different no :";
cin>>a>>b;
cout<<"After swapping :"<<a<<b;
c=a;
a=b;
b=c;
cout<<"Before swapping :"<<a<<b;
getch();
}
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / manasa bugude
import java.util.Scanner;
public class SwappMethod {
public static void main(String[] args)
{
int a,b,c,d;
Scanner scn=new Scanner(System.in);
System.out.println("enter the value of a,b and c");
a=scn.nextInt();
b=scn.nextInt();
c=scn.nextInt();
System.out.println("before swapping numbers:"+a+" "+b+" "+c);
d=a;
a=b;
b=c;
c=d;
System.out.println("after swapping number:"+a+" "+b+" "+c);
System.out.println();
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anonymous
import java.util.*;
class S3v
{
public static void main(String args[])
{
int a,b,c;
Scanner s=new Scanner(System.in);
a=s.nextInt();
b=s.nextInt();
c=a-b;
a=a-c;
b=b+c;
System.out.print(a+" "+b);
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
c# support late binding or early binding.
To modify an, existing worksheet. What steps are involved for: 1. Inserting and deleting rows and columns. 2. Printing cell formulas 3Jld displayed values 3. Using the page setup command
write a program that input four digit no and finds it is palindrome or not
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
Give the output of the following program main() {int ret; ret=fork();ret=fork();ret=fork();ret=fork(); if(!ret) printf("sun"); else printf("solaris");
how to use C++?
Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
Write a program in C++ to concatenate two strings into third string using pointers
What are the components of stl?
what is c++
Which data structure gives efficient search? A. B-tree B. binary tree C. array D. linked list
21 Answers ABC, Sun Microsystems,
what is use of for loop?