摘要: 作为博客初学者,深感荣幸,以下是我第一天编写的代码。 #include <stdio.h>#include <stdlib.h> int main(){ int a,b,c; scanf("%d%d",&a,&b); c=a+b+a*b; printf("c=%d",c); return 0;} 编 阅读全文
posted @ 2021-05-02 11:32 农民初学者 阅读(28) 评论(0) 推荐(0)