您的位置: 首页 > IT文章 > 重学C语言 重学C语言 分类: IT文章 • 2024-12-29 22:21:01 重学C语言 1 #include <stdio.h> 2 3 int main() 4 { 5 int age = 10; 6 int height = 72; 7 8 printf("I am %d year old. ",age); 9 printf("I am %d inches tall. ",height); 10 11 return 0; 12 }