ش | ی | د | س | چ | پ | ج |
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
کدهای تعویض دو متغیر در سی ++ :
https://www.tutorialspoint.com/swap-function-in-cplusplus
https://www.geeksforgeeks.org/swap-in-cpp/
#include <stdio.h> void SwapValue(int &a, int &b) { int t = a; a = b; b = t; } int main() { int a, b; printf("Enter value of a : "); scanf("%d", &a); printf("\nEnter value of b : "); scanf("%d", &b); SwapValue(a, b); printf("\nAfter swapping, the values are: a = %d, b = %d", a, b); return 0; } | ||
فقط کدهای تابع swap :
| ||