重学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.\n",age); 9 printf("I am %d inches tall.\n",height); 10 11 return 0; 12 }
Powered by: 博客园 Copyright © 2024 沉默改良者 Powered by .NET 9.0 on Kubernetes