摘要: 阅读全文
posted @ 2020-02-17 02:12 _魑魅魍魉 阅读(86) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-02-17 01:53 _魑魅魍魉 阅读(64) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include<stdlib.h> int main(){ int data; printf("Please Input a Fraction: \n"); scanf_s("%d", &data); switch (data/10) { case 0: case 阅读全文
posted @ 2020-02-17 01:41 _魑魅魍魉 阅读(170) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include<stdlib.h> int main(){ int num; int numOfHorse; printf("Please Input a Num. \n"); scanf_s("%d", &num); if (num >= 100) { prin 阅读全文
posted @ 2020-02-17 00:45 _魑魅魍魉 阅读(101) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h> int main(){ //0. 变量声明 int num1, num2, num3; //1. 提示用户输入 printf("Please Input First Num. \n"); //2. 获取用户输入 scanf_ 阅读全文
posted @ 2020-02-17 00:16 _魑魅魍魉 阅读(113) 评论(0) 推荐(0)