1、 编个程序能输出下面2行文字:I have a computer I study the C languge
2,任意输出一个字符,输出该字符极它的ASCII码值?
3,输入4个正整数,极它的相反的次序输出,例如输入3649 输出9463
1、 编个程序能输出下面2行文字:I have a computer I study the C languge
2,任意输出一个字符,输出该字符极它的ASCII码值?
3,输入4个正整数,极它的相反的次序输出,例如输入3649 输出9463
2.#include "stdafx.h"
#include <stdio.h>
int main(int argc, char* argv[])
{
char c;
printf("请输入一个字符:");
第一题和第三题已经有人给出
scanf("%s",&c);
getchar();
printf("该字符的ASCII为:%d\n",c);
return 0;
}
1.printf("I have a computer I study the C languge");
2.scanf("%d,%d,%d,%d",&a,&b,&c,&e);
printf("%d,%d,%d,%d",e,c,b,a);