上一页 1 ··· 11 12 13 14 15
摘要: 代码: #include<stdio.h> #define N 10 int main() { /*输入字符串,str[10],将里面的字符逆反排列,再输出。*/ char ch[N]; int num = 0,i,j,temp; gets(ch);//gets函数会自动在最后补一个\0 for(i 阅读全文
posted @ 2022-03-11 20:28 竹等寒 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1.一个人赶着鸭子去每个村庄卖,每经过一个村子卖去所赶鸭子的一半又一只。这样他经过了七个村子后还剩两只鸭子,问他出发时共赶多少只鸭子?经过每个村子卖出多少只鸭子? 代码: #include<stdio.h> int circ(int); int main() { int all, v, sum; a 阅读全文
posted @ 2022-03-11 19:59 竹等寒 阅读(140) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int num = 11; int result = ++num > 11 && --num < 20; printf("result = %d\t num = %d\n",result,num); return 0; } &&符号是并 阅读全文
posted @ 2022-03-11 15:13 竹等寒 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(i 阅读全文
posted @ 2022-03-11 14:54 竹等寒 阅读(74) 评论(0) 推荐(0) 编辑
摘要: #include <stdlib.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv 阅读全文
posted @ 2022-03-11 14:38 竹等寒 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int num,i; printf("一天Jackson.W打开了电脑想学习C语言\n"); printf("突然微信来了好多条信息\n"); printf("他点开了第"); for(i = 0;i < 4;i++) { scanf( 阅读全文
posted @ 2022-03-11 14:25 竹等寒 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>//标准输入输出头文件,下面的printf打印的函数包含在这个头文件里面 int main() { printf("Hello Word!"); return 0; } var code = "93a0d000-84b1-4553-92af-38cece6958f 阅读全文
posted @ 2022-03-11 14:10 竹等寒 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15