摘要: #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; } 阅读全文
posted @ 2019-12-17 16:36 xiaoxiao# 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 基本整型int 长整型long int 短整型short int 阅读全文
posted @ 2019-12-17 13:12 xiaoxiao# 阅读(223) 评论(0) 推荐(0) 编辑
摘要: #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;} 阅读全文
posted @ 2019-12-17 12:40 xiaoxiao# 阅读(82) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<stdlib.h>int main(){ printf("Very good.\n"); system("pause"); return 0;} 阅读全文
posted @ 2019-12-17 11:49 xiaoxiao# 阅读(86) 评论(0) 推荐(0) 编辑
摘要: Ctrl+F5=运行 Ctrl+F7=生成 阅读全文
posted @ 2019-12-17 11:24 xiaoxiao# 阅读(93) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<stdlib.h>int main(){ system("pause");} 阅读全文
posted @ 2019-12-17 10:58 xiaoxiao# 阅读(89) 评论(0) 推荐(0) 编辑
摘要: #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( 阅读全文
posted @ 2019-12-17 10:25 xiaoxiao# 阅读(166) 评论(2) 推荐(0) 编辑
摘要: 符号英文 头文件 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 阅读全文
posted @ 2019-12-17 10:20 xiaoxiao# 阅读(98) 评论(0) 推荐(0) 编辑