交換兩個數的值(C語言版)

今天分享一個簡單的程序-交換兩個數的值: 方法一:定義一箇中間變量來交換兩個數的值 #include<stdio.h> #include<stdlib.h> int main() { int a, b,temp = 0; printf("Please input the a and b:"); scanf_s("%d %d",&a,&b); temp = a; a = b; b =
相關文章
相關標籤/搜索