随笔分类 - C语言
摘要:#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> int main() { float score; printf("请输入成绩"); scanf("%f", &score); printf("成绩是%f", score); return 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; }
阅读全文

浙公网安备 33010602011771号