任务一:
#include<stdio.h> #include<stdlib.h> int main(){ printf(" 0 0\n"); printf("<H> <H> \n"); printf("I I I I\n"); system("pause"); return 0; }
#include<stdio.h> #include<stdlib.h> int main(){ printf(" 0\n"); printf("<H>\n"); printf("I I\n"); printf(" 0\n"); printf("<H>\n"); printf("I I\n"); system("pause"); return 0; }
注意:小黑窗一闪而过甚至不运行:getchar()或函数解决
任务二:
#include<stdio.h> #include<stdlib.h> #include<math.h> int main(){ double x,ans; scanf_s("%lf",&x); ans=pow(x,365); printf("%.2f的365次方:%.2f\n",x,ans); system("pause"); return 0; }
#include<stdio.h> #include<stdlib.h> #include<math.h> int main(){ double x,ans; while(scanf_s("%lf",&x)!= EOF) { ans=pow(x,365); printf("%.2f的365次方:%.2f\n",x,ans); printf("\n"); } system("pause"); return 0; }
#include<stdio.h> #include<stdlib.h> #include<math.h> int main(){ double x,ans; while(scanf_s("%lf",&x)!= EOF) { ans=x*9/5+32; printf("摄氏度%.2f的华摄氏度:%.2f\n",x,ans); printf("\n"); } system("pause"); return 0; }
任务三:
#include<stdio.h> #include<math.h> #include<stdlib.h> int main() { int n; unsigned long long sum; scanf_s("%d", &n); sum = (1 - pow(2, n)) / (-1); printf("n=%d ,sum=%llu \n", n, sum); system("pause"); return 0; }
注意:1.数据类型的表示
任务四:
#include<stdio.h> int main() { double x,y; char c1,c2,c3; int a1, a2, a3; scanf("%d%d%d",&a1,&a2,&a3); printf("%d,%d,%d\n",a1,a2,a3); getchar(); scanf("%c%c%c", &c1, &c2, &c3); printf("%c%c%c\n",c1,c2,c3); scanf("%lf,%lf",&x,&y); printf("%f,%lf\n",x,y); return 0; }
任务五:
#include<stdio.h> #include<math.h> #include<stdlib.h> int main() { int age1, age2; char gender1, gender2; scanf("%d %d %c %c", &age1, &age2, &gender1,&gender2); printf("age1=%d,gender1=%c\n", age1, gender1); printf("age2=%d,gender2=%c\n", age2, gender2); system("pause"); return 0; }
任务六:
#include<stdio.h> int main() { char ans1, ans2; printf("每次课前预习了没,课后复习了吗?(输入y或Y表示有,输入n或N表示没有)\n"); ans1 = getchar(); getchar(); printf("你今天敲代码了吗?(输入y或Y表示有,输入n或N表示没有)\n"); ans2 = getchar(); getchar(); if ((ans1 == 'y' || ans1 == 'Y') && (ans2 == 'y' || ans2 == 'Y')) printf("罗马不是一天建成的,继续努力\n"); else printf("罗马不是一天毁灭的\n"); return 0; }
注意:1.作为字符时判断时要加单引号
2.同等级别的运算符且要求前后的运算顺序时要注意()使用
任务七:
#include<stdio.h> int main() { int answer; char words[3000]; printf("网课学习让一些人欢喜一些人忧.\n"); printf("1. 作为喜欢自学且自律的人,觉得这样很好. 有网络,自主学习,很ok.\n"); printf("2. 不喜,不喜,很不喜. 眼睛快瞎了. 脑壳有点卡...\n"); printf("3. 中间派. 不知道. 说不清.\n"); printf("4. 其它...\n"); printf("你的选择: "); scanf_s("%d", &answer); if (answer == 4) { printf("请补充说明你的想法\n"); getchar(); gets_s(words); } printf("\n"); printf("当遇到问题时, 你会选择:\n"); printf("1. 遇到问题, 就解决问题。不懂的,搜索式学习,逐个攻破.\n"); printf("2. 遇到问题, 不高兴。然后,...,没有了.\n"); printf("3. 其它...\n"); printf("你的选择: "); scanf_s("%d", &answer); if (answer == 1) { printf(":)\n"); } else if (answer == 2) printf("这样不能解决问题啊...我们选择1好不好:)\n"); else if (answer == 3) { printf("请补充你的看法\n"); getchar(); gets_s(words); } return 0; }
注意:1.gets()不安全所以用gets_s(),最好改文件名
2.思考 getchar()的用法 吃掉空格,回车,tab键(在字符型输入时)此处的getchar()应该是吃掉输入完数字后的回车键(一般在数字和字符之间要加getchar(),原因是回车保存到控制台输入的缓冲区然后继续执行下一段输出代码,所以影响了下一个指令的运行认为是一个回车键。)
标签:main,初体验,return,int,编程,C语言,printf,include,getchar From: https://www.cnblogs.com/-piano-/p/16783451.html