1NC22 / hi

0 stars 0 forks source link

pro #1

Open 1NC22 opened 1 month ago

1NC22 commented 1 month ago

solve the issue in https://github.com/1NC22/hi/issues/new

include

int main(){ int a,b; printf("Enter the value for a:\n"); scanf("%d",&a); printf("Enter the value for b:\n"); scanf("%d",&b); printf("a=%d,b=%d:\n",a,b); int t=a; a=b; b=t; printf("a=%d,b=%d:\n",a,b); }

1NC22 commented 1 month ago

solve the program