Problem T: 零起点学算法15——交换变量

2021-06-17 16:03

阅读:364

标签:算法   scanf   style   main   class   clu   scan   code   include   

#includeint main()
{
    int a,b,c;
    scanf("%d %d",&a,&b);
    c=a;
    a=b;
    b=c;
    printf("%d %d",a,b);
    return 0;
}

 

Problem T: 零起点学算法15——交换变量

标签:算法   scanf   style   main   class   clu   scan   code   include   

原文地址:https://www.cnblogs.com/chenlong991223/p/9720399.html


评论


亲,登录后才可以留言!