随笔分类 -  C语言

摘要:#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> int main() { float score; printf("请输入成绩"); scanf("%f", &score); printf("成绩是%f", score); return 0; } 阅读全文
posted @ 2025-04-10 08:42 鲁班大师智商二百五 阅读(5) 评论(0) 推荐(0)
摘要:#include <stdio.h> typedef short int INT16; int main() { short int b = 101; INT16 c = 111; printf("b=%d\n", b); printf("b=%d\n", c); return 0; } 阅读全文
posted @ 2025-04-10 08:40 鲁班大师智商二百五 阅读(6) 评论(0) 推荐(0)