摘要:
#include<stdio.h> int main() {char a='C',b='H',c='I',d='N',e='A';printf("%c%c%c%c%c\n",a,b,c,d,e); printf("%c%c%c%c%c\n",e,d,c,b,a); return 0; } 阅读全文
摘要:
基本整型int 长整型long int 短整型short int 阅读全文
摘要:
#include<stdio.h>#include<stdlib.h>int main(){int h,f,x,y;h=16;f=40;y=(f-2*h)/2;x=h-y;printf("%d,%d\n",x,y); system("pause"); return 0;} 阅读全文
摘要:
#include<stdio.h>#include<stdlib.h>int main(){ printf("Very good.\n"); system("pause"); return 0;} 阅读全文
摘要:
Ctrl+F5=运行 Ctrl+F7=生成 阅读全文
摘要:
#include<stdio.h>#include<stdlib.h>int main(){ system("pause");} 阅读全文
摘要:
#include<stdio.h>#include<stdlib.h>int main() {int max(int x,int y);int a,b,c;scanf("%d %d",&a,&b);c=max(a,b);printf("max=%d\n",c); return 0;}int max( 阅读全文
摘要:
符号英文 头文件 main后 system("pause");#include<stdio.h>#include<stdlib.h>int main() {int max(int x,int y);int a,b,c;scanf("%d,%d",&a&b);c=max(a,b);printf("ma 阅读全文