赞
踩
题目:小明刚开始学习程序设计,打算试试自己的水平,看计算机会不会听自己的吩咐。他想做的第一件事就是“我做什么,计算机也做什么”。小明会从键盘输入任意两个整数,希望计算机能把这两个整数原样输出到屏幕上。
- int main()
- {
- int a,b;
- scanf("%d%d",&a,&b);
- printf("%d %d",a,b);
- return 0;
- }
- #include <stdio.h>
- #include <stdlib.h>
-
- int main()
- {
- int a;
- scanf("%d",&a);
- printf("%d %#o %#x",a,a,a);
- return 0;
- }
- #include <stdio.h>
- #include <stdlib.h>
-
- int main()
- {
- float a;
- scanf("%f",&a);
- printf("%.2f",a);
- return 0;
- }
- #include <stdio.h>
- #include <stdlib.h>
-
- int main()
- {
- char ch1,ch2;
- scanf("%c\n%c",&ch1,&ch2);
- printf("%c,%d,%o,%x\n",ch1,ch1,ch1,ch1);
- printf("%c,%d,%o,%x",ch2,ch2,ch2,ch2);
- return 0;
- }
- #include <stdio.h>
- #include <stdlib.h>
-
- int main()
- {
- double a;
- int b;
- scanf("%lf%d",&a,&b);
- printf("你好,可以借我%.2f元钱吗?\n",a);
- printf("%d天后一定还!",b);
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。