PTA 浙大版《C语言程序设计实验与习题指导(第3版)》题目集(参考答案).pdf,编程题 实验 1-1 Hello World! (5 分) #include stdio.h int main() { return 0; } 实验 1-2 Welcome to You! (5 分) #includestdio.h int main() { return 0; } 实验 1-3 Programming in C is fun!
浙大版《 C语言程序设计实验与习题指导(第 3版)》题目集 —— C语 言练习 练习 1-1 计算摄氏温度 (5分 ) 本题要求编写程序,计算华氏温度100°F对应的摄氏温度。计算公式:2,式中:C表示摄氏温度,F表示华氏温度,输出数据要求为整型。 输入格式: 本题目没有输入。 输出格式: 按照下列格式输出 f...
实验1-1 Hello World! (5 分) #include <stdio.h> int main() { printf("Hello World!"); return 0; } 实验1-2 Welcome to You! (5 分) #include<stdio.h> int main() { printf("Welcome to You!"); return 0; } 实验1-3 Programming in C is fun! (5 分) #include <stdio.h> int...