我刚学,求救哈,编写一个C程序,要求输入两个整数,完成交换并输出

[复制链接]
查看11 | 回复1 | 2011-3-13 12:52:37 | 显示全部楼层 |阅读模式
回复

使用道具 举报

千问 | 2011-3-13 12:52:37 | 显示全部楼层
<pre id=\"best-answer-content\" class=\"reply-text mb10\">#includestdio.h

int main()
{

int a, b, temp;


printf(\"Please input two integers : \");

scanf(\"%d%d\",

printf(\"Before swap :a = %d, b = %d\\n\", a,b);

temp = a;

a = b;

b = temp;

printf(\"After swap :a = %d, b = %d\\n\", a,b);

return 0;
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行